-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.07 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
{
"name": "pliers-imagemin",
"version": "3.0.2",
"description": "Minify GIFs, JPGs, PNGs, and SVGs.",
"author": "Ben Edwards <[email protected]>",
"license": "BSD",
"tags": [
"pliers",
"minification",
"optimisation"
],
"repository": {
"type": "git",
"url": "[email protected]:pliersjs/pliers-imagemin"
},
"publishConfig": {
"registry": "http://registry.npmjs.org"
},
"main": "./pliers-imagemin",
"scripts": {
"lint": "jshint .",
"checkStyle": "jscs .",
"pretest": "npm run lint && npm run checkStyle",
"test": "istanbul cover _mocha -- -R spec",
"posttest": "istanbul check-coverage && rm -rf coverage"
},
"engines": {
"node": ">=0.10.0"
},
"dependencies": {
"async": "^1.5.2",
"chalk": "^1.1.1",
"imagemin": "^4.0.0",
"pretty-bytes": "^3.0.0"
},
"devDependencies": {
"directory-copy": "^0.1.0",
"glob": "^6.0.1",
"istanbul": "^0.3.10",
"jscs": "^1.9.0",
"jshint": "^2.5.5",
"mkdirp": "^0.5.0",
"mocha": "^1.21.4",
"pliers": "^1.0.2",
"rimraf": "^2.2.8"
}
}