-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.28 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.28 KB
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
{
"name": "bfx-hf-data-server",
"version": "5.0.0",
"description": "HF data server module",
"main": "index.js",
"directories": {
"lib": "lib"
},
"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",
"repository": {
"type": "git",
"url": "https://github.com/bitfinexcom/bfx-hf-data-server.git"
},
"bugs": {
"url": "https://github.com/bitfinexcom/bfx-hf-data-server/issues"
},
"scripts": {
"lint": "standard",
"test": "npm run lint && npm run unit",
"unit": "NODE_ENV=test mocha -R spec -b --recursive test/unit",
"start-lowdb": "node examples/server-lowdb.js",
"server_docs": "node_modules/jsdoc-to-markdown/bin/cli.js lib/server.js > docs/server.md",
"docs": "npm run server_docs"
},
"keywords": [
"honey framework",
"bitfinex",
"bitcoin",
"BTC"
],
"dependencies": {
"bfx-api-node-rest": "5.5.0",
"bfx-api-node-util": "^1.0.9",
"bfx-facs-db-sqlite": "git+https://github.com/bitfinexcom/bfx-facs-db-sqlite.git",
"bfx-hf-backtest": "git+https://github.com/bitfinexcom/bfx-hf-backtest#v3.0.0",
"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-strategy": "git+https://github.com/bitfinexcom/bfx-hf-strategy#v3.0.0",
"bfx-hf-strategy-perf": "git+https://github.com/bitfinexcom/bfx-hf-strategy-perf#v3.1.0",
"bfx-hf-util": "git+https://github.com/bitfinexcom/bfx-hf-util#v1.0.12",
"debug": "^4.3.1",
"heap": "^0.2.7",
"lodash": "^4.17.10"
},
"devDependencies": {
"bfx-hf-ext-plugin-bitfinex": "git+https://github.com/bitfinexcom/bfx-hf-ext-plugin-bitfinex#v1.0.13",
"bfx-hf-models-adapter-lowdb": "git+https://github.com/bitfinexcom/bfx-hf-models-adapter-lowdb.git#v1.0.5",
"chai": "^4.3.6",
"dotenv": "^6.2.0",
"jsdoc-to-markdown": "^5.0.1",
"mocha": "^6.2.0",
"sinon": "^14.0.0",
"standard": "^14.2.0",
"ws": "^8.2.1",
"proxyquire": "^2.1.3"
}
}