forked from Intervox/node-webp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1023 Bytes
/
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
{
"author": "Leonid Beschastny <[email protected]>",
"name": "cwebp",
"description": "node.js wrapper for cwebp and dwebp binaries from WebP image processing utility",
"keywords": [
"webp",
"compress",
"minify",
"optimize",
"img",
"image"
],
"version": "2.0.1",
"repository": {
"type": "git",
"url": "https://github.com/Intervox/node-webp.git"
},
"main": "lib/index.js",
"scripts": {
"clean": "rm -rf lib/ cwebp-*.tgz",
"test": "mocha test/*.coffee",
"list-files": "tar -tzf `npm pack | tail -n 1`",
"prepublish": "npm run clean && coffee -o lib/ -cb src/",
"postpublish": "git push origin +HEAD:latest --follow-tags"
},
"engines": {
"node": ">= 0.10.0"
},
"dependencies": {
"raw-body": "2",
"through": "~2.3",
"when": "3"
},
"devDependencies": {
"coffee-script": "^1.10.0",
"minimist": "^1.2.0",
"mocha": "^2.5.3",
"mock-spawn": "^0.2.5",
"should": "^9.0.0",
"stream-buffers": "2.1.0"
}
}