forked from jakearchibald/svgomg
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.73 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "svgomfg",
"private": true,
"version": "1.17.0",
"repository": {
"type": "git",
"url": "git+https://github.com/svg-beauty/svgomfg.git"
},
"keywords": [
"minify",
"optimize",
"open source",
"pwa",
"svg",
"svgo"
],
"author": "Marc Redwerkz",
"bugs": {
"url": "https://github.com/svg-beauty/svgomfg/issues"
},
"homepage": "https://omfg.svg.beauty",
"license": "MIT",
"devDependencies": {
"@antfu/ni": "^0.21.12",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.5",
"bun": "^1.0.18",
"clean-css": "^5.3.3",
"fs-extra": "^11.2.0",
"gulp": "^4.0.2",
"gulp-htmlmin": "^5.0.1",
"gulp-if": "^3.0.0",
"gulp-nunjucks": "^5.0.0",
"gulp-sass": "5.1.0",
"nanoevents": "^9.0.0",
"pako": "^2.1.0",
"prismjs": "^1.29.0",
"rollup": "^4.9.0",
"rollup-plugin-terser": "^7.0.2",
"sass": "^1.69.5",
"sirv-cli": "^2.0.2",
"stylelint-config-twbs-bootstrap": "^12.0.0",
"svgo": "^3.1.0",
"vinyl-map": "^1.0.2"
},
"scripts": {
"build": "gulp clean-build",
"start": "sirv build --port 8888 --dev --no-clear",
"dev": "gulp dev",
"lint": "nr lint:css && nr lint:js",
"lint:css": "nlx stylelint src/css/",
"lint:js": "nlx xo",
"fix": "nlx xo --fix",
"test": "nr lint && nr build"
},
"xo": {
"space": true,
"prettier": true,
"envs": [
"browser"
],
"rules": {
"no-multi-assign": "off",
"no-unused-vars": "warn",
"unicorn/no-unused-properties": "warn",
"unicorn/prefer-add-event-listener": "off",
"unicorn/prefer-module": "off",
"unicorn/prevent-abbreviations": "off"
}
}
}