-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
73 lines (73 loc) · 1.7 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
73
{
"name": "imageoptim",
"version": "0.5.0",
"description": "Node.js wrapper for some images compression algorithms",
"keywords": [
"optimizer",
"image",
"image optim",
"image optimizer",
"lint",
"linter",
"image lint",
"image linter"
],
"homepage": "https://github.com/bem/image-optim",
"bugs": "https://github.com/bem/image-optim/issues",
"author": {
"name": "Evgeniy Gavryushin",
"email": "[email protected]",
"url": "https://github.com/eGavr"
},
"main": "./lib/index.js",
"bin": {
"imageoptim": "./bin/imageoptim"
},
"repository": {
"type": "git",
"url": "git://github.com/bem/image-optim.git"
},
"dependencies": {
"MD5": "1.2.1",
"chalk": "1.0.0",
"coa": "0.4.1",
"handlebars": "3.0.0",
"image-type": "2.0.1",
"inherit": "2.2.2",
"lodash": "3.5.0",
"pngout-bin": "2.0.1",
"q": "1.1.2",
"q-io": "1.11.6",
"read-chunk": "1.0.1"
},
"devDependencies": {
"chai": "2.3.0",
"chai-as-promised": "5.0.0",
"html-differ": "1.0.8",
"istanbul": "0.3.0",
"jscs": "1.9.0",
"jshint": "2.5.11",
"mocha": "1.18.2",
"mock-fs": "2.3.2",
"sinon": "1.12.2",
"sinon-chai": "2.7.0"
},
"scripts": {
"test": "npm run lint && mocha test && npm run cover",
"lint": "jshint . && jscs -c .jscs.js .",
"cover": "istanbul cover _mocha -- test",
"env-setup": "./env/env-setup",
"env-clear": "./env/env-clear",
"postinstall": "npm run env-clear && npm run env-setup"
},
"engines": {
"node": ">=0.10.0",
"npm": ">=1.2.10"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/bem/image-optim/blob/master/LICENSE"
}
]
}