forked from LedgerHQ/lib-ledger-core-node-bindings
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.59 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
{
"name": "@ledgerhq/ledger-core",
"version": "6.1.0",
"libcoreVersion": "3.3.0-rc-ba8a38",
"description": "Ledger Core Library cross-platform C++ bindings for NodeJs",
"main": "js/index.js",
"repository": {
"type": "git",
"url": "https://github.com/LedgerHQ/lib-ledger-core-node-bindings.git"
},
"gypfile": true,
"scripts": {
"preinstall": "node preinstall.js",
"gypinstall": "node-gyp rebuild",
"gypclean": "node-gyp clean",
"gypconfig": "node-gyp configure",
"gypbuild": "node-gyp build",
"gypbuildd": "node-gyp build --debug",
"clean": "rimraf build",
"gypconfigx": "node-gyp configure -- -f xcode",
"lint": "eslint js",
"prettier": "prettier --write \"js/**/*.js\"",
"install": "node-pre-gyp install --fallback-to-build"
},
"binary": {
"module_name": "ledger-core-node",
"module_path": "./build/Release/",
"host": "https://github.com/LedgerHQ/lib-ledger-core-node-bindings/releases/download/",
"remote_path": "{version}"
},
"authors": [
{
"name": "Khalil Bellakrid",
"url": "https://github.com/KhalilBellakrid"
},
{
"name": "Meriadec Pillet",
"url": "https://github.com/meriadec"
}
],
"license": "MIT",
"dependencies": {
"bindings": "1.5.0",
"nan": "^2.6.2",
"node-gyp": "^6.1.0",
"node-pre-gyp": "^0.14.0",
"node-pre-gyp-github": "^1.4.3"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.10.0",
"prettier": "^1.12.1",
"rimraf": "^3.0.2"
}
}