forked from bitfinexcom/bitfinex-api-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.63 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
{
"name": "bitfinex-api-node",
"version": "2.0.0-beta",
"description": "Node reference library for Bitfinex API",
"engines": {
"node": ">=7"
},
"main": "index.js",
"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",
"ws_docs": "node_modules/jsdoc-to-markdown/bin/cli.js lib/transports/ws2.js > doc/ws2.md",
"order_docs": "node_modules/jsdoc-to-markdown/bin/cli.js lib/models/order.js > doc/order.md",
"rest_docs": "node_modules/jsdoc-to-markdown/bin/cli.js lib/transports/rest2.js > doc/rest2.md",
"docs": "npm run ws_docs && npm run rest_docs && npm run order_docs"
},
"repository": {
"type": "git",
"url": "https://github.com/bitfinexcom/bitfinex-api-node.git"
},
"keywords": [
"bitfinex",
"bitcoin",
"BTC"
],
"author": "Josh Rossi <[email protected]> (https://www.bitfinex.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/bitfinexcom/bitfinex-api-node/issues"
},
"homepage": "http://bitfinexcom.github.io/bitfinex-api-node/",
"devDependencies": {
"chai": "^3.4.1",
"dotenv": "^4.0.0",
"istanbul": "^0.4.1",
"jsdoc-to-markdown": "^1.3.1",
"mocha": "^3.4.2",
"bfx-api-mock-srv": "git+https://github.com/bitfinexcom/bfx-api-mock-srv.git",
"standard": "^10.0.2"
},
"dependencies": {
"cbq": "0.0.1",
"debug": "^2.2.0",
"lodash": "^4.17.4",
"lodash.throttle": "^4.1.1",
"request": "^2.67.0",
"request-promise": "^4.2.0",
"ws": "^3.0.0"
}
}