-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 998 Bytes
/
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
{
"name": "cryppledbot",
"version": "1.0.0",
"description": "This is a crypto trading bot implemented in nodejs that utilizes the coinbase pro API. It's trading strategy is a basic interpretation of the momemtum strategy.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/poptartboy0/CryppledBot.git"
},
"keywords": [
"crypto",
"bot",
"coinbase-pro",
"btc"
],
"author": "Levi Leuthold",
"license": "ISC",
"bugs": {
"url": "https://github.com/poptartboy0/CryppledBot/issues"
},
"homepage": "https://github.com/poptartboy0/CryppledBot#readme",
"dependencies": {
"axios": "^0.21.1",
"coinbase-pro": "^0.9.0",
"csv-parse": "^4.16.3",
"csv-parser": "^2.3.3",
"dotenv": "^8.6.0",
"node-csv": "^0.1.2",
"pino": "^6.13.1"
},
"devDependencies": {
"eslint": "^7.32.0"
}
}