-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
64 lines (64 loc) · 1.92 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
59
60
61
62
63
64
{
"name": "hw-app-nano",
"version": "1.3.0",
"author": "Mart Roosmaa <[email protected]>",
"license": "Apache-2.0",
"description": "Ledger Hardware Wallet Nano-family API",
"keywords": [
"Ledger",
"LedgerWallet",
"Nano",
"NanoCurrency",
"$NANO",
"Banano",
"NOS",
"NanoS",
"Blue",
"Hardware Wallet"
],
"repository": {
"type": "git",
"url": "git+https://github.com/roosmaa/hw-app-nano.git"
},
"bugs": {
"url": "https://github.com/roosmaa/hw-app-nano/issues"
},
"homepage": "https://github.com/roosmaa/hw-app-nano#readme",
"publishConfig": {
"access": "public"
},
"main": "lib/index.js",
"scripts": {
"prepare": "npm run clean && npm run build",
"flow": "flow",
"clean": "rm -rf lib/",
"documentation": "documentation build src/index.js --project-name 'hw-app-nano' --project-version `node -e \"console.log(require('./package.json').version)\"` --project-homepage https://github.com/roosmaa/hw-app-nano -g -f html -o docs/",
"prettier": "prettier --write 'src/**/*.js'",
"prettier-diff": "prettier --list-different 'src/**/*.js'",
"lint": "eslint src",
"build": "babel --source-maps -d lib src && flow-copy-source -v src lib",
"watch": "babel --watch --source-maps -d lib src & flow-copy-source -w -v src lib"
},
"dependencies": {
"@ledgerhq/hw-transport": "^4.61.0",
"big-integer": "^1.6.43",
"bip32-path": "^0.4.2",
"blakejs": "^1.1.0",
"nano-base32": "^1.0.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^10.0.1",
"babel-preset-env": "^1.7.0",
"babel-preset-flow": "^6.23.0",
"babel-preset-stage-0": "^6.24.1",
"documentation": "^11.0.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-flowtype": "^3.9.1",
"flow-bin": "^0.100.0",
"flow-copy-source": "^2.0.6",
"flow-typed": "^2.5.2",
"prettier": "^1.17.1"
}
}