-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.15 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
{
"name": "node-hdr-histogram-napi",
"version": "0.5.0",
"description": "A lightweight N-API wrapper for the HdrHistogram_c library",
"author": "Jim Schlight <[email protected]>",
"license": "MIT",
"scripts": {
"install": "prebuild-install --runtime napi || node-gyp rebuild",
"clean": "rm -rf build && rm -rf prebuilds",
"build": "prebuild --runtime napi --all --verbose",
"build:debug": "prebuild --runtime napi --all --verbose --debug",
"rebuild": "npm run clean && npm run build",
"rebuild:debug": "npm run clean && npm run build:debug",
"prebuild": "prebuild --runtime napi --all --strip --verbose",
"upload": "prebuild --runtime napi --upload ${GITHUB_TOKEN}",
"test": "tap test/test.js"
},
"dependencies": {
"bindings": "^1.5.0",
"mocha": "^7.1.2",
"node-addon-api": "^1.1.0",
"node-gyp": "^7.0.0",
"prebuild-install": "^5.3.4",
"tap": "^14.10.7"
},
"devDependencies": {
"prebuild": "^10.0.0"
},
"gypfile": true,
"binary": {
"napi_versions": [
3
]
},
"repository": {
"type": "git",
"url": "[email protected]:inspiredware/node-hdr-histogram-napi.git"
}
}