-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
37 lines (37 loc) · 1.07 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
{
"name": "@mapbox/node-cpp-skel",
"version": "0.2.0",
"description": "Skeleton for bindings to C++ libraries for Node.js using N-API (node-addon-api)",
"url": "http://github.com/mapbox/node-cpp-skel",
"main": "./lib/index.js",
"repository": {
"type": "git",
"url": "[email protected]:mapbox/node-cpp-skel.git"
},
"scripts": {
"test": "tape test/*.test.js",
"install": "node-pre-gyp install --fallback-to-build",
"docs": "documentation build ./lib/index.js -f md > API.md"
},
"author": "Mapbox",
"license": "ISC",
"dependencies": {
"@mapbox/mason-js": "^0.1.5",
"@mapbox/node-pre-gyp": "^1.0.8",
"node-addon-api": "^4.3.0"
},
"devDependencies": {
"aws-sdk": "^2.840.0",
"bytes": "^3.1.0",
"d3-queue": "^3.0.7",
"minimist": "^1.2.5",
"tape": "^5.1.1"
},
"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": "{platform}-{arch}.tar.gz"
}
}