forked from gnagel/node-geohash-cpp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.25 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
40
41
42
43
44
45
46
47
{
"author": "Glenn Nagel <[email protected]>",
"bin": "./bin/cgeohash-cli.js",
"contributors": [
{
"email": "[email protected]",
"name": "Sun Ning"
}
],
"dependencies": {
"optimist": "0.3.5"
},
"description": "Node.js C++ & JS-Native GeoHash",
"devDependencies": {
"chai": "1.6.1",
"mocha": "1.11.0",
"ngeohash": "0.2.0",
"sprintf": "*",
"v8-profiler-table": ">=1.2.0",
"titlecaps": "*"
},
"engines": {
"node": ">=v0.8.14"
},
"keywords": [
"geohash",
"ngeohash",
"native",
"addon",
"module",
"c",
"c++",
"bindings",
"gyp"
],
"license": "MIT",
"main": "./index.js",
"name": "cgeohash",
"repository": {
"url": "https://github.com/gnagel/node-geohash-cpp"
},
"scripts": {
"postinstall": "node-gyp configure rebuild",
"test": "npm install && npm update && node-gyp configure build && mocha --reporter spec ./tests/shared_spec.js && mocha --reporter spec ./tests/speed_spec.js | grep Total | sort | tee -a ./speeds.log; date >> ./speeds.log"
},
"version": "1.5.0"
}