-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
83 lines (83 loc) · 2.21 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "atcb",
"version": "0.1.7",
"description": "Auto trading bot wrapping bianace Api",
"main": "index.js",
"scripts": {
"postpublish": "babel src -d dist",
"deamon": "forever start dist/index.js liveupdate",
"test": "jasmine",
"lint": "eslint .",
"flow": "flow .",
"flow-typed": " flow-typed install",
"watch": "babel --watch src -d dist"
},
"keywords": [
"binance",
"cryptocurrency",
"BTC",
"ETH",
"BNB",
"bot",
"trading"
],
"bin": {
"atcb": "./dist/index.js"
},
"author": "Fei Liu [email protected]",
"license": "MIT",
"dependencies": {
"chalk": "^2.3.0",
"clear": "^0.0.1",
"clui": "^0.3.6",
"configstore": "^3.1.1",
"d3-scale": "^2.0.0",
"easy-table": "^1.1.1",
"figures": "^2.0.0",
"forever": "^0.15.3",
"form-data": "^2.3.2",
"inquirer": "^5.1.0",
"lodash-id": "^0.14.0",
"lodash.get": "^4.4.2",
"lodash.groupby": "^4.6.0",
"lodash.orderby": "^4.6.0",
"lodash.throttle": "^4.1.1",
"log-symbols": "^2.2.0",
"lowdb": "^1.0.0",
"mathjs": "^4.0.0",
"minimist": "^1.2.0",
"moment": "^2.20.1",
"node-binance-api": "^0.4.21",
"node-fetch": "^2.0.0",
"node-fs-extra": "^0.8.2",
"numeral": "^2.0.6",
"ora": "^2.0.0",
"query-string": "^5.1.0",
"ramda": "^0.25.0",
"sparkly": "^3.1.2",
"strip-ansi": "^4.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-stage-3": "^6.24.1",
"eslint": "^4.18.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-flowtype": "^2.46.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"flow-bin": "^0.67.1",
"flow-typed": "^2.3.0",
"jasmine": "^3.0.0",
"prettier": "^1.11.1"
}
}