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
/
package.json
57 lines (57 loc) · 1.6 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": "7.1.0-beta.0",
"libcoreVersion": "4.2.0-rc-845b1b",
"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.14.2",
"node-gyp": "^8.0.0",
"node-pre-gyp": "^0.17.0",
"node-pre-gyp-github": "^1.4.3"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.24.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^7.0.0",
"prettier": "^2.2.1",
"rimraf": "^3.0.2"
}
}