forked from bitcoinvsalts/node-binance-trader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 922 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
39
{
"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 <[email protected]>",
"license": "ISC",
"bin": {
"nbt": "./index.js"
},
"dependencies": {
"binance-api-node": "^0.8.5",
"chalk": "^2.3.0",
"clear": "^0.1.0",
"colors": "^1.3.2",
"configstore": "^4.0.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",
"numeral": "^2.0.6",
"ora": "^3.0.0",
"path": "^0.12.7",
"readline": "^1.3.0"
}
}