-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
38 lines (38 loc) · 991 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
{
"name": "h3-node",
"version": "4.1.1",
"description": "H3 Bindings to node using N-API",
"main": "index.js",
"scripts": {
"prebuild": "bash .prebuild.sh",
"install": "bash -c \"if node-gyp-build-test; then node-gyp-build; else npm run prebuild && node-gyp-build; fi\"",
"rebuild": "rm -rf build && node-gyp-build",
"clean": "node-gyp clean && rm -rf h3",
"test": "nodeunit test"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/dfellis/h3-node.git"
},
"keywords": [
"h3",
"binding",
"n-api"
],
"author": "David Ellis <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dfellis/h3-node/issues"
},
"homepage": "https://github.com/dfellis/h3-node#readme",
"dependencies": {
"node-gyp": "^10",
"node-gyp-build": "^4",
"prebuildify": "^5.0.0"
},
"devDependencies": {
"h3-js": "^4.1.0",
"nodeunit": "^0.11.3",
"prebuildify-ci": "^1.0.4"
}
}