-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.19 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
{
"name": "crypto-bot",
"version": "0.0.1",
"description": "Automatic trading crypto bot",
"main": "src/index.js",
"scripts": {
"start": "cli/trade -s -a kraken -c xlmeur xrpeur",
"start:dev": "NODE_ENV=development cli/trade",
"start:debug": "node inspect cli/trade",
"test": "jest --coverage",
"test:cld": "node inspect node_modules/.bin/jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dimkl/crypto-bot.git"
},
"keywords": [
"crypto",
"trade",
"exchange",
"bot",
"bitstamp"
],
"author": "Dimitris Klouvas <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dimkl/crypto-bot/issues"
},
"homepage": "https://github.com/dimkl/crypto-bot#readme",
"dependencies": {
"bitstamp-sdk": "file:./bitstamp-sdk",
"cacheable-lookup": "^5.0.4",
"faye-websocket": "^0.11.3",
"got": "^11.8.1",
"keyv": "^4.0.3",
"kraken-api": "^1.0.1",
"lodash.get": "^4.4.2",
"lodash.set": "^4.3.2",
"lowdb": "^1.0.0",
"uuid": "^8.3.2",
"yargs": "^16.2.0"
},
"devDependencies": {
"dotenv": "^8.2.0",
"jest": "^26.6.3",
"nock": "^13.0.7"
}
}