-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
40 lines (40 loc) · 976 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
{
"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": "3.1.0",
"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`",
"prepack": "npm run clean && coffee -o lib/ -cb src/",
"postpublish": "git push origin +HEAD:latest --follow-tags"
},
"engines": {
"node": ">=12"
},
"dependencies": {
"raw-body": "2"
},
"devDependencies": {
"coffeescript": "^1.10.0",
"minimist": "^1.2.0",
"mocha": "^10.2.0",
"mock-spawn": "^0.2.5",
"should": "^12.0.0",
"stream-buffers": "2.1.0"
}
}