forked from jekatigr/ExchangeGates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2.1 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "exchange-gates",
"version": "6.1.9",
"description": "Unified JS and WS interface for cryptoexchanges.",
"main": "index.js",
"dependencies": {
"big.js": "^5.2.1",
"bitfinex-api-node": "^2.0.1",
"ccxt": "^1.17.405",
"cross-env": "^5.2.0",
"crypto-js": "^3.1.9-1",
"node-binance-api": "^0.9.0",
"node-tidex-api": "^2.0.2",
"pako": "^1.0.6",
"request": "^2.88.0",
"request-promise-native": "^1.0.5",
"ws": "^6.1.0"
},
"devDependencies": {
"eslint": "^6.0.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^21.25.1",
"jest": "^24.8.0"
},
"scripts": {
"start-bibox": "cross-env CONFIG_FILE_PATH='./config/biboxConfig.json' node index.js",
"start-binance": "cross-env CONFIG_FILE_PATH='./config/binanceConfig.json' node index.js",
"start-bitfinex": "cross-env CONFIG_FILE_PATH='./config/bitfinexConfig.json' node index.js",
"start-huobi": "cross-env CONFIG_FILE_PATH='./config/huobiConfig.json' node index.js",
"start-tidex": "cross-env CONFIG_FILE_PATH='./config/tidexConfig.json' node index.js",
"start-okex": "cross-env CONFIG_FILE_PATH='./config/okexConfig.json' node index.js",
"lint": "./node_modules/.bin/eslint ./",
"test": "cross-env TEST=true jest",
"coverage": "jest --collectCoverageFrom=./**.js --coverage ./"
},
"repository": {
"type": "git",
"url": "git@github.com:jekatigr/ExchangeGates.git"
},
"keywords": [
"websocket",
"api",
"integration",
"cryptoexchange",
"bibox",
"bitfinex",
"binance",
"okex",
"tidex",
"huobi"
],
"contributors": [
{
"name": "jekatigr",
"email": "jekatigr@yandex.ru"
},
{
"name": "maconidolma",
"email": "linkova93@gmail.com"
}
],
"license": "MIT",
"homepage": "https://github.com/jekatigr/ExchangeGates"
}