forked from bitfinexcom/bfx-api-node-rest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.2 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
{
"name": "bfx-api-node-rest",
"version": "5.3.0",
"description": "Official Bitfinex REST v1 & v2 API interfaces",
"engines": {
"node": ">=8.3.0"
},
"main": "./index.js",
"husky": {
"hooks": {
"pre-commit": "npm test"
}
},
"scripts": {
"lint": "standard lib",
"lint:fix": "standard --fix lib",
"test": "npm run lint && npm run unit",
"unit": "NODE_ENV=test nyc --check-coverage --lines 45 --branches 19 --functions 39 --statements 44 --reporter=lcov --reporter=html mocha -b --recursive",
"docs": "rm -rf docs && jsdoc --configure .jsdoc.json --verbose"
},
"repository": {
"type": "git",
"url": "https://github.com/bitfinexcom/bfx-api-node-rest.git"
},
"keywords": [
"bitfinex",
"bitcoin",
"BTC"
],
"author": "Bitfinex",
"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)",
"Jacob Plaster <[email protected]> (https://www.bitfinex.com)",
"Abhishek Shrestha <[email protected]> (https://www.bitfinex.com)",
"Vigan Abdurrahmani <[email protected]> (https://www.bitfinex.com)",
"Sergio López <[email protected]> (https://www.bitfinex.com)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/bitfinexcom/bfx-api-node-rest/issues"
},
"devDependencies": {
"bfx-api-mock-srv": "^1.6.0",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"docdash": "^1.2.0",
"husky": "^4.2.3",
"jsdoc-to-markdown": "^5.0.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"proxyquire": "^2.1.3",
"sinon": "^15.0.3",
"socks-proxy-agent": "^5.0.0",
"standard": "^17.0.0"
},
"dependencies": {
"bfx-api-node-models": "^1.8.0",
"bfx-api-node-util": "^1.0.10",
"debug": "4.1.1",
"dirty-chai": "^2.0.1",
"lodash": "^4.17.15",
"node-fetch": "^2.6.9"
}
}