forked from tiagosiebler/TriangularArbitrage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.04 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
{
"name": "TriangularArbitrage",
"version": "0.2.0",
"description": "Monitor multiple currencies in a single exchange via websockets to detect triangular arbitrage opportunities.",
"main": "index.js",
"directories": {
"doc": "docs",
"lib": "lib"
},
"scripts": {
"start": "node index.js",
"test": "echo 'test logic not done yet'",
"lint": "eslint .",
"debug": "node --inspect index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/tiagosiebler/TriangularArbitrage.git"
},
"author": "Tiago Siebler",
"license": "ISC",
"bugs": {
"url": "https://github.com/tiagosiebler/TriangularArbitrage/issues"
},
"homepage": "https://github.com/tiagosiebler/TriangularArbitrage#readme",
"dependencies": {
"binance": "https://github.com/tiagosiebler/binance/tarball/master",
"clui": "^0.3.6",
"fs": "0.0.1-security",
"mongodb": "^3.0.1",
"node-env-file": "^0.1.8",
"sosa_mongo": "^1.0.3",
"winston": "^3.0.0-rc1"
},
"devDependencies": {
"eslint": "^4.15.0"
}
}