-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.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": "@mapbox/node-cpp-skel",
"version": "0.1.0",
"description": "Skeleton for bindings to C++ libraries for Node.js using NAN",
"url": "http://github.com/mapbox/node-cpp-skel",
"main": "./lib/index.js",
"repository": {
"type": "git",
"url": "git@github.com:mapbox/node-cpp-skel.git"
},
"scripts": {
"test": "tape test/*.test.js",
"prepublishOnly": "npm ls",
"install": "node-pre-gyp install --fallback-to-build",
"docs": "documentation build src/standalone_async/*.cpp src/standalone/*.cpp src/object_sync/*.cpp src/object_async/*.cpp --polyglot -f md -o API.md"
},
"author": "Mapbox",
"license": "ISC",
"dependencies": {
"nan": "~2.5.1",
"node-pre-gyp": "~0.6.32"
},
"bundledDependencies": [
"node-pre-gyp"
],
"devDependencies": {
"aws-sdk": "^2.4.7",
"tape": "^4.5.1",
"d3-queue": "^3.0.1",
"minimist": "~1.2.0"
},
"binary": {
"module_name": "module",
"module_path": "./lib/binding/",
"host": "https://mapbox-node-binary.s3.amazonaws.com",
"remote_path": "./{name}/v{version}/{configuration}/{toolset}/",
"package_name": "{node_abi}-{platform}-{arch}.tar.gz"
}
}