-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.25 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
{
"name": "svgsus",
"version": "0.23.4",
"description": "Organize, clean and transform your SVGs",
"main": "index.js",
"bin": {
"svgsus": "./bin/svgsus"
},
"unpkg": "svgsus.min.js",
"scripts": {
"test": "standard && ava",
"lint": "standard",
"build": "browserify index.js -t babelify -g uglifyify --debug -s svgsus | exorcist svgsus.min.js.map > svgsus.min.js",
"prepublish": "npm test && npm run build --production"
},
"homepage": "http://www.svgs.us",
"repository": "department-stockholm/svgsus",
"bugs": "https://github.com/department-stockholm/svgsus/issues",
"keywords": [
"svgsus",
"svg"
],
"standard": {
"parser": "babel-eslint"
},
"author": "Department (https://department.se)",
"license": "MIT",
"devDependencies": {
"ava": "^0.18.2",
"babel-eslint": "^7.0.0",
"babel-preset-env": "^1.3.2",
"babelify": "^7.3.0",
"browserify": "^14.1.0",
"execa": "^0.6.3",
"exorcist": "^0.4.0",
"standard": "^9.0.2",
"uglifyify": "^3.0.4"
},
"dependencies": {
"css-select": "1.2.0",
"cssparser": "0.2.2",
"docopt": "0.6.2",
"onecolor": "3.0.4",
"pdfjs-dist": "1.7.401",
"svg-path-parser": "1.0.1",
"svgo": "^0.7.2",
"xml2js": "0.4.17"
}
}