forked from atanmarko/safex-nodejs-libwallet
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
52 lines (52 loc) · 1.25 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
{
"name": "safex-nodejs-libwallet",
"version": "0.2.0",
"description": "Safex libwallet native addon based on Monero native addon from Exantech",
"main": "index.js",
"typings": "index.d.ts",
"directories": {
"lib": "lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ddabek/safex-nodejs-libwallet.git"
},
"keywords": [
"Safex",
"crypto",
"currency",
"cryptocurrency",
"wallet",
"nodejs"
],
"license": "LGPL-3.0-or-later",
"gypfile": true,
"homepage": "https://github.com/ddabek/safex-nodejs-libwallet#readme",
"engines": {
"node": "13.8"
},
"dependencies": {
"node-addon-api": "^3.0.0",
"cmake-js": "",
"rimraf": "^2.6.2",
"tap": "^14.4.2"
},
"bundledDependencies": [
"node-pre-gyp",
"node-pre-gyp-github"
],
"binary": {
"module_name": "safex",
"module_path": "./lib/binding/",
"remote_path": "{version}",
"host": "https://github.com/ddabek/safex-nodejs-libwallet/releases/download/"
},
"scripts": {
"build": "./install.sh",
"publish": "node-pre-gyp configure build package",
"publishGithub": "node-pre-gyp-github publish",
"prepublishOnly": "npm ls",
"install": "./install.sh",
"test": "node test/index.js"
}
}