-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
39 lines (39 loc) · 1.17 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": "@radarlabs/s2",
"version": "0.0.5",
"description": "Node.js JavaScript and TypeScript bindings for the Google S2 geolocation library.",
"main": "index.js",
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/radarlabs/s2.git"
},
"scripts": {
"build": "node-pre-gyp install --build-from-source",
"install": "node-pre-gyp install --fallback-to-build",
"test": "jest --logHeapUsage --verbose",
"publish-to-s3": "node-pre-gyp package unpublish publish"
},
"author": "Jeff Kao ([email protected])",
"license": "Apache-2.0",
"keywords": [
"geolocation"
],
"devDependencies": {
"jest": "^24.8.0",
"aws-sdk": "2.x",
"bindings": "^1.5.0"
},
"binary": {
"module_name": "s2",
"module_path": "./lib/binding/{configuration}/{node_abi}-{platform}-{arch}/",
"remote_path": "./{module_name}/v{version}/{configuration}/",
"package_name": "{module_name}-v{version}-{node_abi}-{platform}-{arch}.tar.gz",
"host": "https://node-s2-binaries.s3.amazonaws.com"
},
"dependencies": {
"@mapbox/node-pre-gyp": "^1.0.10",
"node-addon-api": "^1.7.2",
"node-gyp": "^9.3.1"
}
}