forked from kesla/node-snappy
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
38 lines (38 loc) · 1.02 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
{
"author": "David Björklund <[email protected]>",
"name": "snappy",
"description": "Nodejs bindings to Google's Snappy compression library",
"version": "6.3.1",
"homepage": "https://github.com/kesla/node-snappy",
"repository": {
"type": "git",
"url": "git://github.com/kesla/node-snappy.git"
},
"main": "snappy.js",
"scripts": {
"pretest": "node-gyp rebuild",
"test": "nyc ava test.js && semistandard | snazzy && prebuild-ci",
"install": "prebuild-install || node-gyp rebuild",
"rebuild": "prebuild --compile",
"prebuild": "prebuild --all --strip --verbose"
},
"dependencies": {
"bindings": "^1.3.1",
"nan": "^2.14.0",
"prebuild-install": "^5.2.2"
},
"devDependencies": {
"ava": "^0.25.0",
"bluebird": "^3.5.3",
"nyc": "^11.9.0",
"prebuild": "^8.2.1",
"prebuild-ci": "^2.3.0",
"semistandard": "^11.0.0",
"snazzy": "^7.1.1"
},
"gypfile": true,
"bugs": {
"url": "https://github.com/kesla/node-snappy/issues"
},
"license": "MIT"
}