-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
59 lines (59 loc) · 1.86 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
{
"name": "bfx-hf-algo-server",
"version": "1.4.4",
"description": "HF Algorithmic Order Server",
"main": "index.js",
"engines": {
"node": ">=7"
},
"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",
"scripts": {
"lint": "standard",
"test": "npm run lint && npm run unit",
"unit": "NODE_ENV=test mocha -R spec -b --recursive",
"start": "node examples/server.js",
"server_docs": "node_modules/jsdoc-to-markdown/bin/cli.js lib/server.js > docs/server.md",
"docs": "npm run server_docs"
},
"repository": {
"type": "git",
"url": "https://github.com/bitfinexcom/bfx-hf-algo-server.git"
},
"bugs": {
"url": "https://github.com/bitfinexcom/bfx-hf-algo-server/issues"
},
"keywords": [
"honey framework",
"bitfinex",
"bitcoin",
"BTC"
],
"dependencies": {
"bfx-hf-algo": "git+https://github.com/bitfinexcom/bfx-hf-algo.git#v2.0.0",
"bfx-hf-models": "git+https://github.com/bitfinexcom/bfx-hf-models.git#v2.1.0",
"bfx-hf-util": "git+https://github.com/bitfinexcom/bfx-hf-util.git#v1.0.1",
"debug": "^4.2.0",
"dotenv": "^6.0.0",
"lodash": "^4.17.10",
"ws": "^7.3.1"
},
"devDependencies": {
"bfx-api-node-rest": "^1.1.4",
"bfx-hf-ext-plugin-bitfinex": "git+https://github.com/bitfinexcom/bfx-hf-ext-plugin-bitfinex.git#v1.0.0",
"bfx-hf-models-adapter-lowdb": "git+https://github.com/bitfinexcom/bfx-hf-models-adapter-lowdb.git#v1.0.0",
"jsdoc-to-markdown": "^5.0.1",
"mocha": "^6.2.0",
"socks-proxy-agent": "^4.0.1",
"standard": "^14.2.0"
}
}