-
Notifications
You must be signed in to change notification settings - Fork 215
/
Copy pathpackage.json
79 lines (79 loc) · 2.21 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
{
"name": "bitfinex-api-node",
"version": "7.0.0",
"description": "Node reference library for Bitfinex API",
"engines": {
"node": ">=18.0"
},
"main": "index.js",
"husky": {
"hooks": {
"pre-commit": "npm test"
}
},
"scripts": {
"lint": "standard",
"lint:fix": "standard --fix",
"test": "npm run lint && npm run unit",
"unit": "NODE_ENV=test mocha -b --recursive",
"docs": "rm -rf docs && node_modules/.bin/jsdoc --configure .jsdoc.json --verbose",
"prepare": "husky install"
},
"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)",
"Abhishek Shrestha <[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": {
"bfx-api-mock-srv": "^1.0.4",
"blessed": "0.1.81",
"blessed-contrib": "^1.0.11",
"cli-table3": "^0.6.5",
"docdash": "^2.0.2",
"dotenv": "^16.4.5",
"husky": "^9.1.6",
"jsdoc-to-markdown": "^9.0.1",
"mocha": "^10.7.3",
"p-iteration": "1.1.8",
"readline-promise": "1.0.4",
"socks-proxy-agent": "^8.0.4",
"standard": "^17.1.2"
},
"dependencies": {
"bfx-api-node-models": "^2.0.0",
"bfx-api-node-rest": "^6.0.0",
"bfx-api-node-util": "^1.0.12",
"bfx-api-node-ws1": "^1.0.0",
"bignumber.js": "9.0.0",
"cbq": "0.0.1",
"debug": "4.3.3",
"lodash": "^4.17.4",
"lodash.throttle": "4.1.1",
"lossless-json": "1.0.3",
"promise-throttle": "1.0.1",
"ws": "7.5.10"
},
"standard": {
"ignore": [
"/docs/**/*.js"
]
}
}