-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
59 lines (59 loc) · 1.49 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
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "monero-nodejs-libwallet",
"version": "0.3.11",
"description": "Monero libwallet native addon. Under development at the moment",
"main": "index.js",
"typings": "index.d.ts",
"directories": {
"lib": "lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/exantech/monero-nodejs-libwallet.git"
},
"keywords": [
"Monero",
"crypto",
"currency",
"cryptocurrency",
"wallet",
"nodejs"
],
"author": "exantech",
"license": "LGPL-3.0-or-later",
"gypfile": true,
"bugs": {
"url": "https://github.com/exantech/monero-nodejs-libwallet/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/exantech/monero-nodejs-libwallet#readme",
"engines": {
"node": "^8 || ^10 || ^12"
},
"dependencies": {
"nan": "^2.14.0",
"node-pre-gyp": "^0.13.0"
},
"devDependencies": {
"aws-sdk": "^2.495.0",
"node-gyp": "^4.0.0",
"rimraf": "^2.6.3",
"tap": "^14.4.2"
},
"bundledDependencies": [
"node-pre-gyp"
],
"binary": {
"module_name": "monero",
"module_path": "./lib/binding/",
"remote_path": "./{module_name}/v{version}/{configuration}/",
"package_name": "{module_name}-v{version}-{node_abi}-{platform}-{arch}.tar.gz",
"host": "https://monero-nodejs-addon.s3.amazonaws.com"
},
"scripts": {
"build": "node-pre-gyp configure build",
"prepublishOnly": "npm ls",
"install": "node-pre-gyp install --fallback-to-build",
"test": "node test/index.js"
}
}