-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.34 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
{
"name": "chin-plugin-imagemin",
"version": "0.0.4",
"repository": "chinjs/chin-plugin-imagemin",
"author": "kthjm <[email protected]>",
"main": "index.js",
"license": "MIT",
"description": "Chin plugin using imagemin.",
"keywords": [
"chin",
"chin-plugin",
"imagemin",
"gifsicle",
"jpegtran",
"optipng",
"svgo",
"gif",
"jpg",
"png",
"svg"
],
"nyc": {
"sourceMap": false,
"instrument": false,
"require": [
"babel-register"
]
},
"scripts": {
"ex": "cross-env BABEL_ENV=EXAMPLE chin -c -r babel-register",
"test": "cross-env BABEL_ENV=TEST nyc mocha -t 10000",
"coverage": "nyc report --reporter=lcov && codecov"
},
"dependencies": {
"imagemin": "^5.3.1"
},
"optionalDependencies": {
"imagemin-gifsicle": "^5.2.0",
"imagemin-jpegtran": "^5.0.2",
"imagemin-optipng": "^5.2.1",
"imagemin-svgo": "^6.0.0"
},
"peerDependencies": {
"chin": "^3.0.5"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-plugin-istanbul": "^4.1.6",
"babel-preset-env": "^1.6.1",
"babel-preset-power-assert": "^2.0.0",
"codecov": "^3.0.1",
"cross-env": "^5.1.4",
"mocha": "^5.1.1",
"nyc": "^11.7.1",
"power-assert": "^1.5.0",
"rewire": "^4.0.1"
}
}