This repository has been archived by the owner on Oct 8, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
66 lines (66 loc) · 1.47 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
65
66
{
"name": "@arkecosystem/cli",
"description": "CLI for the Ark Blockchain",
"keywords": [
"ark",
"blockchain",
"spv",
"lite",
"cli"
],
"version": "2.0.0",
"contributors": [
"Brian Faust <[email protected]>",
"Marc Schot <[email protected]>"
],
"license": "MIT",
"bin": {
"ark:cli": "./bin/cli"
},
"scripts": {
"test": "jest --forceExit",
"test:watch": "jest --watch",
"lint": "eslint ./ --fix"
},
"dependencies": {
"@arkecosystem/crypto": "^0.1.2",
"ascii-table": "^0.0.9",
"axios": "^0.18.1",
"bs58check": "^2.1.2",
"chalk": "^2.4.1",
"figlet": "^1.2.0",
"is-reachable": "^2.4.0",
"is-url": "^1.2.4",
"joi": "^13.2.0",
"ledgerco": "github:ledgerhq/ledger-node-js-api#6cde5978b9d0a4922f0d33520b16cc2184559ebc",
"lodash": "^4.17.13",
"ora": "^1.1.0",
"pino": "^4.16.1",
"prompt": "^1.0.0",
"workerpool": "^2.3.1"
},
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"husky": "^0.14.3",
"jest": "^23.3.0",
"jest-extended": "^0.7.2",
"lint-staged": "^7.1.3",
"regenerator-runtime": "^0.11.1",
"standard": "^11.0.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix"
]
}
}