forked from pierreinglebert/node-zopfli
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
75 lines (75 loc) · 1.91 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
74
75
{
"name": "node-zopfli",
"description": "Bindings for Zopfli compressing lib. Compress gzip files 5% better than gzip.",
"version": "2.0.2",
"author": "Pierre Inglebert <[email protected]>",
"contributors": [
"duralog <[email protected]>",
"MayhemYDG <[email protected]>",
"XhmikosR <[email protected]>"
],
"license": "MIT",
"keywords": [
"zopfli",
"zlib",
"compress",
"gzip",
"deflate"
],
"homepage": "https://github.com/pierreinglebert/node-zopfli",
"repository": {
"type": "git",
"url": "https://github.com/bruce-one/node-zopfli.git"
},
"bugs": {
"url": "https://github.com/pierreinglebert/node-zopfli/issues"
},
"engines": {
"node": ">=0.12"
},
"binary": {
"module_name": "zopfli",
"module_path": "./lib/binding/{node_abi}-{platform}-{arch}",
"package_name": "{module_name}-v{version}-{node_abi}-{platform}-{arch}.tar.gz",
"remote_path": "{version}",
"host": "https://github.com/bruce-one/node-zopfli/releases/download/"
},
"dependencies": {
"commander": "^2.8.1",
"defaults": "^1.0.2",
"nan": "^2.0.0",
"node-pre-gyp": "^0.6.4"
},
"devDependencies": {
"async": "^2.0.0",
"aws-sdk": "^2.4.8",
"chai": "^3.5.0",
"coveralls": "^2.11.2",
"eslint": "1.0.0",
"istanbul": "^0.4.4",
"mocha": "^2.2.4",
"node-pre-gyp-github": "^1.3.1",
"randomstring": "^1.0.5"
},
"bin": {
"zopfli": "bin/zopfli",
"zopflipng": "bin/zopflipng"
},
"files": [
"bin",
"lib",
"src",
"zopfli",
"binding.gyp"
],
"scripts": {
"coveralls": "coveralls < ./coverage/lcov.info",
"install": "node-pre-gyp install --fallback-to-build",
"lint": "eslint .",
"mocha": "mocha test",
"test-cov": "istanbul cover ./node_modules/mocha/bin/_mocha -- -R spec test",
"test": "npm run lint && npm run mocha"
},
"main": "lib/zopfli.js",
"gypfile": true
}