-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
29 lines (29 loc) · 971 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
{
"name": "node-addon-example",
"version": "0.1.5",
"description": "Hello world app packaged with node-pre-gyp",
"main": "./index.js",
"author": "Dane Springmeyer <springmeyer>",
"repository": {
"type": "git",
"url": "git://github.com/springmeyer/node-addon-example.git"
},
"binary": {
"module_name": "node_addon_example",
"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-pre-gyp-tests.s3-us-west-1.amazonaws.com"
},
"dependencies": {
"@mapbox/node-pre-gyp": "^1.0.0",
"nan": "2.x"
},
"devDependencies": {
"aws-sdk": "2.x"
},
"scripts": {
"install": "node-pre-gyp install --fallback-to-build",
"test": "node index.js"
}
}