-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
27 lines (27 loc) · 1007 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
{
"name" : "hdkn-libtorrent",
"version" : "0.1.1",
"author" : { "name": "Viktor Elofsson", "email": "[email protected]" },
"description" :"Bindings for libtorrent-rasterbar.",
"repository" : {
"type" : "git",
"url" : "https://github.com/hadouken/libtorrent-nodejs.git"
},
"main": "./libtorrent.js",
"binary": {
"module_name" : "libtorrent",
"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://hadouken.s3.amazonaws.com"
},
"dependencies" : {
"node-pre-gyp": "0.5.x"
},
"bundledDependencies":["node-pre-gyp"],
"scripts": {
"install" : "node-pre-gyp install --fallback-to-build",
"test": "node libtorrent.js",
"prepublish": "npm ls"
}
}