-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 1000 Bytes
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 1000 Bytes
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
{
"name" : "node-addon-unbundle2",
"version" : "0.1.3-unbundle2",
"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" : {
"node-pre-gyp": "~0.6.20"
},
"scripts": {
"preinstall": "npm install node-pre-gyp",
"install" : "node-pre-gyp install --fallback-to-build",
"test": "node index.js",
"prepublish": "npm ls"
}
}