forked from DeviaVir/zenbot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
125 lines (125 loc) · 3.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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "zenbot4",
"version": "4.1.0",
"description": "Cryptocurrency trading bot",
"bugs": "https://github.com/deviavir/zenbot/issues",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/deviavir/zenbot.git"
},
"main": "./index.js",
"bin": {
"zenbot": "./zenbot.sh"
},
"scripts": {
"lint": "eslint **/*.js",
"lint-fix": "eslint **/*.js --fix",
"precommit": "lint-staged",
"test": "jasmine test/_specs/**/**.test.js",
"test-one": "jasmine $PATH_TO_TEST",
"postinstall": "node post_install.js"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"dependencies": {
"@slack/client": "^4.0.0",
"async": "^2.5.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"bitfinex-api-node": "^1.2.0",
"bitstamp": "^1.0.4",
"bl": "^1.2.1",
"bollinger-bands": "^3.0.1",
"bootstrap": "^4.0.0-beta.2",
"ccxt": "^1.10.1216",
"cexio-api-node": "^1.0.8",
"cliff": "^0.1.10",
"colors": "^1.1.2",
"commander": "^2.9.0",
"convnetjs": "0.3.0",
"counterup": "^1.0.2",
"css-loader": "^0.28.7",
"echarts": "^4.0.2",
"ejs": "^2.5.7",
"exports-loader": "^0.7.0",
"expose-loader": "^0.7.4",
"express": "^4.16.2",
"file-loader": "^1.1.6",
"forex.analytics": "mkmarek/forex.analytics#7bc278987700d4204e959af17de61495941d1a14",
"gdax": "^0.6.0",
"gemini-api": "^2.0.4",
"glob": "^7.1.1",
"har-validator": "^5.0.3",
"husky": "^0.14.3",
"idgen": "^2.0.2",
"imports-loader": "^0.8.0",
"ip": "~1.1.5",
"jasmine": "^2.8.0",
"jquery": "^3.2.1",
"keltnerchannel": "^1.4.2",
"kraken-api": "^1.0.0",
"lint-staged": "^7.0.0",
"lodash": "^4.17.4",
"lolex": "^2.3.2",
"mathjs": "^4.0.0",
"micro-request": "^666.0.10",
"mime": "^2.2.0",
"minimist": "^1.2.0",
"mock-require": "^3.0.1",
"moment": "^2.18.1",
"mongodb": "^3.0.1",
"node-bittrex-api": "^0.8.2",
"node-prowl": "^0.1.7",
"node-sass": "^4.7.2",
"node-telegram-bot-api": "^0.30.0",
"number-abbreviate": "^2.0.0",
"numbro": "highvelocityspace/numbro",
"path": "^0.12.7",
"poloniex.js": "0.0.8",
"popper.js": "^1.12.9",
"postcss-loader": "^2.0.9",
"progress": "^2.0.0",
"pushbullet": "2.1.0",
"pusher-js": "^4.1.0",
"quadrigacx": "0.0.7",
"random-port": "^0.1.0",
"regression": "^2.0.0",
"resolve-url-loader": "^2.2.1",
"sass-loader": "^6.0.6",
"semver": "^5.4.1",
"simple-xmpp": "^1.3.0",
"stats-lite": "2.1.0",
"style-loader": "^0.20.1",
"superagent": "^3.8.2",
"talib": "^1.0.4",
"timebucket": "^0.4.0",
"trend": "0.3.0",
"tulind": "^0.8.9",
"url-loader": "^1.0.1",
"uuid": "^3.1.0",
"waypoints": "^4.0.1",
"webpack": "^4.0.0",
"webpack-cli": "^2.0.9",
"wexnz": "^0.1.3",
"ws": "^5.0.0",
"zero-fill": "^2.2.3"
},
"devDependencies": {
"eslint": "^4.7.1",
"geneticalgorithm": "^0.3.4",
"json2csv": "^4.0.0",
"round-precision": "^1.0.0",
"run-parallel-limit": "^1.0.3",
"shelljs": "^0.8.0",
"yargs": "^11.0.0"
},
"engines": {
"node": "^8.3.0 || ^9.0.0"
}
}