This repository has been archived by the owner on Feb 22, 2021. It is now read-only.
forked from svg/svgo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.61 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "@innocuous/svgo",
"version": "2.1.2",
"description": "Nodejs-based tool for optimizing SVG vector graphics files",
"keywords": [
"svgo",
"svg",
"optimize",
"minify"
],
"author": {
"name": "Kir Belevich",
"email": "[email protected]",
"url": "https://github.com/deepsweet"
},
"homepage": "https://github.com/innocuous-tech/svgo",
"bugs": {
"url": "https://github.com/innocuous-tech/svgo/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/innocuous-tech/svgo.git"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"main": "./lib/svgo.js",
"bin": {
"svgo": "./bin/svgo"
},
"directories": {
"bin": "./bin",
"lib": "./lib",
"example": "./examples"
},
"scripts": {
"test": "set NODE_ENV=test && yarn mocha",
"lint": "yarn jshint --show-non-errors ."
},
"dependencies": {
"chalk": "^2.4.1",
"coa": "^2.0.2",
"css-select": "^2.0.0",
"css-select-base-adapter": "^0.1.1",
"css-tree": "1.0.0-alpha.37",
"csso": "^4.0.2",
"js-yaml": "^3.13.1",
"mkdirp": "~0.5.1",
"object.values": "^1.1.0",
"sax": "~1.2.4",
"stable": "^0.1.8",
"unquote": "~1.1.1",
"util.promisify": "~1.0.0"
},
"devDependencies": {
"fs-extra": "~8.1.0",
"husky": "^4.2.3",
"istanbul": "~0.4.5",
"jshint": "~2.10.2",
"lint-staged": "^10.0.8",
"mocha": "~6.2.2",
"mocha-istanbul": "~0.3.0",
"mock-stdin": "~0.3.1",
"np": "^6.2.0",
"should": "~13.2.3"
},
"engines": {
"node": ">=8.0.0"
},
"license": "MIT"
}