-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
38 lines (38 loc) · 909 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
{
"name": "svgo-autocrop",
"version": "1.1.2",
"description": "SVGO plugin that reduces viewBox to minimum possible size so no wasted transparent space around svg",
"main": "index.js",
"bin": "./bin/svgo",
"keywords": [
"svgo",
"svg",
"optimize",
"minify",
"autocrop"
],
"author": {
"name": "Glennos",
"url": "https://github.com/glennosss"
},
"repository": {
"type": "git",
"url": "https://github.com/glennosss/svgo-autocrop.git"
},
"homepage": "https://github.com/glennosss/svgo-autocrop/",
"scripts": {
"test": "jest --maxWorkers=4",
"testfile": "node node_modules/jest/bin/jest.js -i",
"testname": "node node_modules/jest/bin/jest.js -t"
},
"license": "MIT",
"dependencies": {
"puppeteer": "*",
"jimp": "^0.16.1",
"svgo": "^2.8.0",
"svg-pathdata": "^6.0.3"
},
"devDependencies": {
"jest": "^27.2.5"
}
}