forked from LedgerHQ/ledgerjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 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
{
"name": "@ledgerhq/hw-app-ada",
"version": "4.19.1",
"description": "Ledger Hardware Wallet Cardano ADA API",
"main": "lib/Ada.js",
"repository": "git+ssh://[email protected]/LedgerHQ/ledgerjs.git",
"keywords": [
"Ledger",
"LedgerWallet",
"ada",
"Cardano",
"SL",
"NanoS",
"Hardware",
"Wallet"
],
"author": "HiddenField Ltd <[email protected]>",
"license": "Apache-2.0",
"dependencies": {
"@ledgerhq/hw-transport": "^4.19.0",
"node-int64": "^0.4.0"
},
"devDependencies": {
"@ledgerhq/hw-transport-node-hid": "^4.19.1",
"chai": "^4.1.2",
"chalk": "^2.3.1",
"flow-bin": "^0.68.0",
"flow-typed": "^2.4.0",
"joi": "^13.1.2",
"mocha": "^5.0.1"
},
"bugs": {
"url": "https://github.com/LedgerHQ/ledgerjs/issues"
},
"homepage": "https://github.com/LedgerHQ/ledgerjs#readme",
"scripts": {
"flow": "flow",
"clean": "rm -rf lib/ flow-typed/",
"build": "cd ../.. && export PATH=$(yarn bin):$PATH && cd - && babel --source-maps -d lib src && flow-copy-source -v src lib",
"watch": "cd ../.. && export PATH=$(yarn bin):$PATH && cd - && babel --watch --source-maps -d lib src & flow-copy-source -w -v src lib",
"clean-test": "rm -rf test/lib",
"build-test": "yarn run clean-test && cd ../.. && export PATH=$(yarn bin):$PATH && cd - && babel --source-maps -d test/lib test/src && flow-copy-source -v test/src test/lib",
"core-test": "yarn run build-test && yarn run flow && mocha --timeout 3500 test/lib/core",
"api-test": "yarn run build-test && yarn run flow && mocha --timeout 15000 test/lib/api"
}
}