forked from cncf/svg-autocrop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.04 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
{
"name": "svg-autocrop",
"version": "1.0.17",
"description": "Auto crop svg files and remove extraneous tags and attributes",
"main": "index.js",
"scripts": {
"test": "nyc --include=index.js --reporter=text --reporter=html node test.js",
"fix": "node fix.js",
"capture": "CAPTURE=1 node test.js",
"one-image": "CAPTURE=1 MATCH=kubernetes node test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cncf/svg-autocrop.git"
},
"author": "CNCF",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/cncf/svg-autocrop/issues"
},
"keywords": [
"svg",
"crop",
"image",
"resize",
"autocrop",
"optimize",
"viewbox"
],
"bin": {
"svg-autocrop": "./fix.js"
},
"homepage": "https://github.com/cncf/svg-autocrop#readme",
"dependencies": {
"convert-svg-to-png": "0.5.0",
"jimp": "0.6.0",
"lodash": "^4.17.11",
"prettydiff": "^100.1.7",
"svgo": "^1.1.1",
"xml-beautifier": "^0.4.0"
},
"devDependencies": {
"nyc": "^13.1.0"
}
}