-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
71 lines (71 loc) · 2.35 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
66
67
68
69
70
71
{
"name": "bfx-hf-server",
"version": "10.1.0",
"description": "HF server bundle",
"author": "Bitfinex",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/bitfinexcom/bfx-hf-server.git"
},
"bugs": {
"url": "https://github.com/bitfinexcom/bfx-hf-server/issues"
},
"keywords": [
"honey framework",
"bitfinex",
"bitcoin",
"BTC"
],
"dependencies": {
"aes-js": "^3.1.2",
"bfx-api-node-core": "git+https://github.com/bitfinexcom/bfx-api-node-core.git#v1.6.1",
"bfx-api-node-plugin-wd": "^1.0.4",
"bfx-api-node-rest": "5.5.0",
"bfx-hf-algo": "git+https://github.com/bitfinexcom/bfx-hf-algo#v4.21.3",
"bfx-hf-ext-plugin-dummy": "github:bitfinexcom/bfx-hf-ext-plugin-dummy#v1.0.4",
"bfx-hf-indicators": "git+https://github.com/bitfinexcom/bfx-hf-indicators.git#v2.2.0",
"bfx-hf-models": "git+https://github.com/bitfinexcom/bfx-hf-models.git#v4.0.0",
"bfx-hf-models-adapter-lowdb": "git+https://github.com/bitfinexcom/bfx-hf-models-adapter-lowdb.git#v1.0.5",
"bfx-hf-strategy": "git+https://github.com/bitfinexcom/bfx-hf-strategy#v3.0.0",
"bfx-hf-strategy-exec": "git+https://github.com/bitfinexcom/bfx-hf-strategy-exec#v3.1.0",
"bfx-hf-strategy-perf": "git+https://github.com/bitfinexcom/bfx-hf-strategy-perf#v3.1.0",
"bfx-hf-ui-config": "git+https://github.com/bitfinexcom/bfx-hf-ui-config#v1.11.1",
"bfx-hf-util": "git+https://github.com/bitfinexcom/bfx-hf-util.git#v1.0.12",
"bignumber.js": "^9.0.0",
"bluebird": "^3.7.2",
"cors": "^2.8.5",
"debug": "^4.1.1",
"express": "^4.17.1",
"flat-promise": "^1.0.2",
"got": "^11.8.1",
"joi": "^17.4.2",
"lodash": "^4.17.11",
"scrypt-js": "^2.0.4",
"sha.js": "^2.4.11",
"sprintf-js": "^1.1.2",
"uuid": "^8.3.2",
"ws": "^8.2.1"
},
"scripts": {
"start": "NODE_PATH=lib node examples/server.js",
"lint": "standard",
"lint:fix": "standard --fix",
"coverage": "nyc --all --reporter lcov npm run unit",
"test": "npm run lint && npm run unit",
"unit": "NODE_PATH=lib NODE_ENV=test mocha --recursive test/unit"
},
"devDependencies": {
"chai": "^4.3.4",
"mocha": "^6.2.3",
"nyc": "^15.1.0",
"proxyquire": "^2.1.3",
"sinon": "^11.1.1",
"standard": "^16.0.3"
},
"standard": {
"ignore": [
"/docs/**/*.js"
]
}
}