forked from bitcoinvsalts/node-binance-trader
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.06 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.06 KB
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
{
"name": "node-binance-trader",
"version": "0.0.5",
"description": "An efficient cryptocurrency command line trading bot for Binance using Node.js",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"binance",
"cryptocurrency",
"trading",
"bot"
],
"author": "Herve Fulchiron <herve76@gmail.com>",
"license": "ISC",
"bin": {
"nbt": "./index.js"
},
"dependencies": {
"bignumber.js": "^8.1.1",
"binance-api-node": "^0.8.5",
"chalk": "^2.3.0",
"clear": "^0.1.0",
"colors": "^1.3.2",
"configstore": "^4.0.0",
"decimal.js": "^10.1.1",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"figlet": "^1.2.1",
"fs": "^0.0.1-security",
"inquirer": "^6.2.0",
"lodash": "^4.17.11",
"moment": "^2.22.2",
"node-bash-title": "^0.0.2",
"nodemailer": "^6.0.0",
"numeral": "^2.0.6",
"ora": "^3.0.0",
"path": "^0.12.7",
"readline": "^1.3.0"
},
"devDependencies": {
"nodemon": "^1.18.9"
}
}