forked from springmeyer/node-addon-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 1.03 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
{
"name" : "node-addon-example",
"version" : "0.1.4",
"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" : {
"nan": "2.x",
"node-pre-gyp": "0.x"
},
"devDependencies": {
"aws-sdk": "2.0.12"
},
"bundledDependencies":["node-pre-gyp"],
"scripts": {
"install" : "node-pre-gyp install --fallback-to-build",
"test": "node index.js",
"prepublish": "npm ls"
}
}