forked from bitfinexcom/bitfinex-api-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.85 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
80
81
82
83
84
85
86
87
88
89
90
{
"name": "bitfinex-api-node",
"version": "4.0.15",
"description": "Node reference library for Bitfinex API",
"engines": {
"node": ">=8.3.0"
},
"main": "index.js",
"husky": {
"hooks": {
"pre-commit": "npm test"
}
},
"scripts": {
"lint": "eslint lib/ examples/ test/ index.js",
"test": "npm run lint && npm run unit",
"unit": "NODE_ENV=test nyc --check-coverage --lines 80 --branches 65 --functions 70 --statements 75 --reporter=lcov --reporter=html mocha -b --recursive",
"docs": "rm -rf docs && node_modules/.bin/jsdoc --configure .jsdoc.json --verbose",
"build": "babel -q ./index.js -d ./dist && babel -q ./lib -d ./dist/lib && copy package.json dist"
},
"repository": {
"type": "git",
"url": "https://github.com/bitfinexcom/bitfinex-api-node.git"
},
"keywords": [
"bitfinex",
"bitcoin",
"BTC"
],
"contributors": [
"Ezequiel Wernicke <[email protected]> (https://www.bitfinex.com)",
"Josh Rossi <[email protected]> (https://www.bitfinex.com)",
"Cris Mihalache <[email protected]> (https://www.bitfinex.com)",
"Robert Kowalski <[email protected]> (https://www.bitfinex.com)",
"Simone Poggi <[email protected]> (https://www.bitfinex.com)",
"Paolo Ardoino <[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": {
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-regenerator": "^6.26.0",
"babel-preset-env": "^1.7.0",
"bfx-api-mock-srv": "^1.0.4",
"chai": "^4.2.0",
"docdash": "^1.2.0",
"dotenv": "^8.2.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsdoc": "^22.0.0",
"eslint-plugin-lodash": "^6.0.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.2.3",
"jsdoc-to-markdown": "^5.0.1",
"mocha": "^7.1.0",
"nyc": "^15.0.0",
"socks-proxy-agent": "^5.0.0",
"standard": "^14.3.1"
},
"dependencies": {
"readline-promise": "^1.0.4",
"blessed": "^0.1.81",
"blessed-contrib": "^4.8.19",
"cli-table3": "^0.6.0",
"bfx-api-node-models": "^1.2.1",
"bfx-api-node-rest": "^3.0.8",
"bfx-api-node-util": "^1.0.2",
"bfx-api-node-ws1": "^1.0.0",
"bignumber.js": "^9.0.0",
"bluebird": "^3.5.1",
"cbq": "0.0.1",
"copy": "^0.3.2",
"crc-32": "^1.2.0",
"debug": "^4.1.1",
"lodash": "^4.17.4",
"lodash.throttle": "^4.1.1",
"lossless-json": "^1.0.3",
"p-iteration": "^1.1.8",
"promise-throttle": "^1.0.1",
"request": "^2.67.0",
"request-promise": "^4.2.0",
"ws": "^7.2.1"
}
}