forked from mapbox/node-s2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 964 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
39
{
"name": "@mapbox/s2",
"version": "0.5.2",
"main": "index.js",
"scripts": {
"install": "node-pre-gyp install --fallback-to-build",
"test": "jshint index.js && tap --tap test/regioncoverer.js"
},
"dependencies": {
"nan": "^2.4.0",
"node-pre-gyp": "^0.12.0"
},
"devDependencies": {
"tap": "~0.4.9",
"test-linestring": "0.0.1",
"test-point": "0.0.2",
"test-polygon": "0.0.4",
"jshint": "~2.5.2"
},
"bundledDependencies": [
"node-pre-gyp"
],
"author": "Tom MacWright <[email protected]> (http://macwright.org/)",
"repository": {
"type": "git",
"url": "git://github.com/mapbox/node-s2.git"
},
"engines": {
"node": "*"
},
"license": "ISC",
"binary": {
"module_name": "_s2",
"module_path": "./build/Release",
"host": "https://mapbox-node-binary.s3.amazonaws.com",
"remote_path": "./{name}/v{version}",
"package_name": "{node_abi}-{platform}-{arch}.tar.gz"
}
}