-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.21 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
38
39
40
41
42
43
44
45
46
{
"name": "naclb",
"author": "Cedric Moreau <cem.moreau@gmail.com>",
"version": "1.3.11",
"description": "Node.js Addon for NaCl Binding",
"license": "MIT",
"readmeFilename": "readme.md",
"bugs": {
"url": "https://github.com/duniter/naclb/issues"
},
"main": "index.js",
"engines": {
"node": ">=4.2.0",
"npm": ">=2.11"
},
"scripts": {
"test": "node \"node_modules/mocha/bin/mocha\" tests/",
"install": "node-pre-gyp install --fallback-to-build",
"package": "node-pre-gyp package",
"publish": "node-pre-gyp publish"
},
"repository": {
"type": "git",
"url": "git@github.com:c-geek/naclb.git"
},
"dependencies": {
"bindings": "1.2.1",
"nan": "2.13.2",
"node-pre-gyp": "0.6.33"
},
"devDependencies": {
"aws-sdk": "2.2.43",
"mocha": "2.2.5",
"tweetnacl": "0.13.1"
},
"bundledDependencies": [
"node-pre-gyp"
],
"binary": {
"module_name": "naclb",
"module_path": "./lib/binding/{configuration}/{node_abi}-{platform}-{arch}/",
"remote_path": "./v{version}/{configuration}/",
"package_name": "{module_name}-v{version}-{node_abi}-{platform}-{arch}.tar.gz",
"host": "https://naclb.s3-eu-central-1.amazonaws.com"
}
}