forked from LedgerHQ/ledgerjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.06 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
{
"name": "@ledgerhq/hw-transport-http",
"version": "4.19.0",
"description": "Ledger Hardware Wallet communication layer over http",
"keywords": [
"Ledger",
"LedgerWallet",
"proxy",
"http",
"NanoS",
"Blue",
"Hardware Wallet"
],
"repository": {
"type": "git",
"url": "https://github.com/LedgerHQ/ledgerjs"
},
"bugs": {
"url": "https://github.com/LedgerHQ/ledgerjs/issues"
},
"homepage": "https://github.com/LedgerHQ/ledgerjs",
"publishConfig": {
"access": "public"
},
"main": "lib/HttpTransport.js",
"license": "Apache-2.0",
"dependencies": {
"@ledgerhq/hw-transport": "^4.19.0"
},
"devDependencies": {
"flow-bin": "^0.68.0",
"flow-typed": "^2.4.0"
},
"scripts": {
"flow": "flow",
"clean": "rm -rf lib/",
"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"
}
}