This repository has been archived by the owner on Nov 13, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
64 lines (64 loc) · 1.78 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": "broker-cli",
"version": "0.8.0-beta-rc2",
"description": "Broker CLI utility to interact with the Sparkswap Broker Daemon",
"main": "./bin/sparkswap",
"scripts": {
"format": "npm run lint -- --fix",
"lint": "eslint ./ --ext .js --max-warnings=0",
"test": "npm run format && NODE_PATH=. mocha './{,!(node_modules)/**/}*.spec.js'",
"coverage": "nyc npm test",
"ci-test": "npm run lint && npm test",
"postinstall": "sh scripts/postinstall.sh",
"install-config": "sh scripts/install-config.sh"
},
"bin": {
"sparkswap": "./bin/sparkswap"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sparkswap/broker-cli.git"
},
"author": "Sparkswap <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/sparkswap/broker-cli/issues"
},
"homepage": "https://github.com/sparkswap/broker-cli#readme",
"dependencies": {
"big.js": "5.1.2",
"caporal": "1.1.0",
"cli-table2": "^0.2.0",
"colors": "1.2.4",
"compare-versions": "3.1.0",
"grpc": "1.11.3",
"grpc-caller": "0.11.0",
"prettyjson": "1.2.1",
"validator": "10.2.0",
"window-size": "1.1.0",
"yn-cli": "1.0.0"
},
"devDependencies": {
"chai": "4.1.2",
"chai-as-promised": "7.1.1",
"dirty-chai": "2.0.1",
"eslint": "5.16.0",
"eslint-config-standard": "12.0.0",
"eslint-plugin-import": "2.16.0",
"eslint-plugin-jsdoc": "15.3.5",
"eslint-plugin-node": "8.0.1",
"eslint-plugin-promise": "4.0.1",
"eslint-plugin-standard": "4.0.0",
"mocha": "5.1.1",
"mock-require": "3.0.2",
"nyc": "11.7.3",
"rewire": "4.0.1",
"sinon": "7.2.3",
"sinon-chai": "3.3.0",
"timekeeper": "2.1.2",
"timeout-as-promise": "1.0.0"
},
"engines": {
"node": "8.11.x"
}
}