-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.01 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
{
"author": "Millicent Billette",
"contributors": "Aurore Sanchez",
"name": "svg-def-cleaner",
"description": "Detect and merge redundant definitions and nodes for lighter svg files. Best use after svgo pre-optimisation.",
"keywords": [
"svg",
"optimisation",
"minification"
],
"version": "0.2.0",
"license": "BSD, MIT, WTFPL, CC-BY, pick what you prefer",
"repository": {
"type": "git",
"url": "git://github.com/GammaNu/svg-def-cleaner.git"
},
"homepage": "https://github.com/GammaNu/svg-def-cleaner",
"main": "./bin/svg-def-cleaner.js",
"bin": {
"svg-def-cleaner": "./bin/commandLineWrapper.js"
},
"dependencies": {
"xmldom": "^0.1.19",
"xpath": "0.0.6"
},
"devDependencies": {
"chai": "^1.9.1",
"coffee-script": "^1.7.1",
"glob": "^4.0.2",
"mkdirp": "^0.5.0",
"mocha": "^1.20.1",
"q": "^2.0.2",
"watch": "^0.10.0",
"colors": "*",
"rimraf": "*"
},
"bugs": {
"url": "https://github.com/GammaNu/svg-def-cleaner/issues"
}
}