forked from ottodevs/instabot-trader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.3 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
{
"dependencies": {
"async": "^2.5.0",
"bfx-api-node-models": "^1.0.6",
"bitfinex-api-node": "^2.0.4",
"body-parser": "^1.18.2",
"config": "^2.0.1",
"express": "^4.16.2",
"gdax": "^0.8.0",
"get-stdin": "^6.0.0",
"moment": "^2.24.0",
"request": "^2.88.0",
"slack-node": "^0.1.8",
"telegraf": "^3.24.1",
"terminal-kit": "^1.14.3",
"twilio": "^3.17.5",
"uuid": "^3.3.2"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^4.17.0",
"eslint-config-airbnb-base": "^11.3.2",
"eslint-plugin-import": "^2.7.0",
"istanbul": "1.1.0-alpha.1",
"mocha": "^5.2.0",
"sinon": "^7.2.2",
"nock": "^11.3.5"
},
"license": "MIT",
"homepage": "https://instabot42.github.io/",
"keywords": [
"Bitcoin",
"Bitfinex",
"Deribit",
"Coinbase",
"Trading"
],
"description": "Auto trading and alerting",
"author": {
"name": "Instabot"
},
"main": "src/index.js",
"name": "instabot-trader",
"scripts": {
"start": "node src/index.js",
"sign": "node src/sign.js",
"setup": "cp -n config/default.json config/local.json || true",
"test": "mocha --recursive",
"watch": "mocha --recursive --watch",
"coverage": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- --recursive -u exports"
}
}