-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
79 lines (79 loc) · 2.95 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
72
73
74
75
76
77
78
79
{
"name": "bfx-hf-algo",
"version": "4.21.3",
"description": "HF Algorithmic Order Module",
"main": "index.js",
"engines": {
"node": ">=10.0.0"
},
"author": "Bitfinex",
"contributors": [
"Cris Mihalache <cris.m@bitfinex.com> (https://www.bitfinex.com)",
"Paolo Ardoino <paolo@bitfinex.com> (https://www.bitfinex.com)",
"Jacob Plaster <jacob.plaster@bitfinex.com> (https://www.bitfinex.com)",
"Anton Nazarenko <anton@code-care.pro>"
],
"license": "Apache-2.0",
"scripts": {
"lint": "standard",
"lint:fix": "standard --fix",
"test": "npm run lint && npm run unit",
"unit": "NODE_ENV=test mocha -R spec -b --recursive test/lib",
"integration": "NODE_ENV=test mocha -R spec -b --recursive --timeout=60000 test/integration",
"docs": "rm -rf docs && node_modules/.bin/jsdoc --configure .jsdoc.json --verbose",
"benchmark:mock": "MOCK_PORT=5555 node ./test/benchmarks/utils/api_mock.js spawn",
"benchmark:debug": "API_URL=ws://localhost:5555 node --expose-gc --inspect ./test/benchmarks/$TARGET.js",
"benchmark:run": "API_URL=ws://localhost:5555 clinic doctor --dest ./.benchmarks_reports/$TARGET --on-port 'autocannon -d 10 localhost:$PORT && curl \"localhost:$PORT/gc?interval=4&iterations=5\"' -- node --expose-gc --inspect ./test/benchmarks/$TARGET.js"
},
"repository": {
"type": "git",
"url": "https://github.com/bitfinexcom/bfx-hf-algo.git"
},
"bugs": {
"url": "https://github.com/bitfinexcom/bfx-hf-algo/issues"
},
"keywords": [
"honey framework",
"bitfinex",
"bitcoin",
"BTC"
],
"dependencies": {
"@bitfinex/lib-js-util-math": "git+https://github.com/bitfinexcom/lib-js-util-math.git",
"bfx-api-node-core": "^1.6.1",
"bfx-api-node-models": "^1.6.2",
"bfx-api-node-plugin-managed-candles": "^1.0.2",
"bfx-api-node-plugin-managed-ob": "^1.0.3",
"bfx-api-node-plugin-wd": "^1.0.4",
"bfx-api-node-rest": "^4.6.0",
"bfx-api-node-util": "^1.0.2",
"bfx-hf-indicators": "git+https://github.com/bitfinexcom/bfx-hf-indicators.git#v2.2.0",
"bfx-hf-signals": "git+https://github.com/bitfinexcom/bfx-hf-signals.git#v1.1.0",
"bfx-hf-util": "git+https://github.com/bitfinexcom/bfx-hf-util#v1.0.12",
"bluebird": "^3.5.5",
"debug": "^4.3.1",
"flat-promise": "^1.0.2",
"lodash": "^4.17.15"
},
"devDependencies": {
"bfx-hf-ext-plugin-bitfinex": "git+https://github.com/bitfinexcom/bfx-hf-ext-plugin-bitfinex#v1.0.13",
"bfx-hf-models": "git+https://github.com/bitfinexcom/bfx-hf-models.git#v4.0.1",
"bfx-hf-models-adapter-lowdb": "git+https://github.com/bitfinexcom/bfx-hf-models-adapter-lowdb.git#v1.0.6",
"chai": "^4.2.0",
"clinic": "^9.0.0",
"docdash": "^1.2.0",
"dotenv": "^8.2.0",
"jsdoc": "^3.6.3",
"mocha": "^7.1.0",
"proxyquire": "^2.1.3",
"restify": "^8.5.1",
"sinon": "^9.0.0",
"standard": "^16.0.3",
"ws": "^7.4.5"
},
"standard": {
"ignore": [
"/docs/**/*.js"
]
}
}