This repository has been archived by the owner on May 30, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
58 lines (58 loc) · 1.65 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
{
"name": "@ledgerhq/ledger-core",
"version": "6.14.5",
"libcoreVersion": "3.5.0-rc-661687",
"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",
"release": "node-pre-gyp-github publish"
},
"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": {
"@ledgerhq/node-pre-gyp-github": "^1.0.2",
"@mapbox/node-pre-gyp": "^1.0.5",
"bindings": "1.5.0",
"nan": "^2.14.2",
"node-gyp": "^7.1.2"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.15.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^7.0.0",
"prettier": "^2.4.1",
"rimraf": "^3.0.2"
}
}