-
-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathpackage.json
52 lines (52 loc) · 912 Bytes
/
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
{
"name": "grunt-svgmin",
"version": "7.0.0",
"description": "Minify SVG",
"license": "MIT",
"repository": "sindresorhus/grunt-svgmin",
"funding": "https://github.com/sponsors/sindresorhus",
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "https://sindresorhus.com"
},
"engines": {
"node": ">=14.16"
},
"scripts": {
"test": "xo && grunt"
},
"files": [
"tasks"
],
"keywords": [
"gruntplugin",
"svg",
"vector",
"graphic",
"image",
"optimize",
"minify"
],
"dependencies": {
"chalk": "^4.1.2",
"log-symbols": "^4.1.0",
"pretty-bytes": "^5.6.0",
"svgo": "^3.0.2"
},
"devDependencies": {
"grunt": "^1.0.3",
"grunt-cli": "^1.3.2",
"grunt-contrib-clean": "^2.0.0",
"grunt-simple-mocha": "^0.4.1",
"xo": "^0.56.0"
},
"peerDependencies": {
"grunt": ">=1"
},
"xo": {
"rules": {
"unicorn/prefer-module": "off"
}
}
}