-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
55 lines (55 loc) · 1.75 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
{
"name": "bfx-hf-strategy-exec",
"version": "3.1.0",
"description": "Execution logic for bfx-hf-strategy",
"main": "./index.js",
"directories": {
"lib": "lib"
},
"author": "Bitfinex",
"contributors": [
"Cris Mihalache <[email protected]> (https://www.bitfinex.com)",
"Paolo Ardoino <[email protected]> (https://www.bitfinex.com)",
"Jacob Plaster <[email protected]> (https://www.bitfinex.com)"
],
"license": "Apache-2.0",
"scripts": {
"lint": "standard",
"test": "npm run lint && npm run unit",
"unit": "NODE_ENV=test istanbul cover _mocha -- -R spec -b --recursive",
"test-without-coverage": "NODE_ENV=test mocha -R spec -b --recursive",
"api_docs": "node_modules/jsdoc-to-markdown/bin/cli.js ./index.js > docs/api.md",
"docs": "npm run api_docs"
},
"repository": {
"type": "git",
"url": "https://github.com/f3rno/bfx-hf-strategy-exec.git"
},
"bugs": {
"url": "https://github.com/f3rno/bfx-hf-strategy-exec/issues"
},
"keywords": [
"honey framework",
"bitfinex",
"bitcoin",
"BTC"
],
"dependencies": {
"bfx-api-node-core": "git+https://github.com/bitfinexcom/bfx-api-node-core.git#v1.6.1",
"bfx-hf-strategy": "git+https://github.com/bitfinexcom/bfx-hf-strategy#v3.0.0",
"bfx-hf-util": "git+https://github.com/bitfinexcom/bfx-hf-util.git#v1.0.12",
"debug": "^4.3.3",
"lodash": "^4.17.10",
"promise-throttle": "^1.0.0"
},
"devDependencies": {
"bfx-api-node-plugin-wd": "^1.0.4",
"bfx-api-node-rest": "^4.1.2",
"bfx-hf-indicators": "git+https://github.com/bitfinexcom/bfx-hf-indicators.git#v2.1.1",
"chai": "^4.2.0",
"istanbul": "^0.4.5",
"jsdoc-to-markdown": "^5.0.1",
"mocha": "^6.2.0",
"standard": "^14.2.0"
}
}