-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
50 lines (50 loc) · 1.24 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
{
"name": "svg-autocrop",
"version": "2.0.41",
"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",
"prepublishOnly": "npm shrinkwrap",
"postpublish": "mv npm-shrinkwrap.json package-lock.json"
},
"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": "./fix.js",
"homepage": "https://github.com/cncf/svg-autocrop#readme",
"dependencies": {
"bluebird": "^3.7.2",
"glob": "^7.2.0",
"https-proxy-agent": "^5.0.0",
"jimp": "0.16.1",
"lodash": "^4.17.21",
"prettydiff": "^101.2.6",
"puppeteer": "^13.1.3",
"svgo": "^1.3.2",
"text-to-svg": "^3.1.5",
"ws": "^8.4.2",
"xml-beautifier": "^0.5.0"
},
"devDependencies": {
"nyc": "^15.1.0"
}
}