-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 921 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 921 Bytes
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
{
"name": "node-bzip2",
"version": "1.0.2",
"description": "NodeJS bindings for BZip2 (libbz2)",
"homepage": "https://github.com/WilliamVenner/node-bzip2",
"repository": "git+https://github.com/WilliamVenner/node-bzip2.git",
"bugs": {
"url": "https://github.com/WilliamVenner/node-bzip2/issues"
},
"keywords": [
"bzip2",
"bz2",
"compression",
"compress",
"decompression",
"decompress"
],
"author": "William Venner <william@venner.io> (https://github.com/WilliamVenner)",
"main": "src/node-bzip2.js",
"scripts": {
"preinstall": "node-gyp clean && node-gyp configure --release",
"install": "node-gyp rebuild --release",
"test": "node --expose-gc test/compression.js && node test/options.js && node test/invalid.js && node --expose-gc test/async.js && node test/integration.js"
},
"license": "MIT",
"dependencies": {
"bindings": "^1.5.0",
"nan": "^2.22.0",
"node-gyp": "^11.0.0"
}
}