-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
75 lines (75 loc) · 2.29 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
{
"name": "bfx-api-node-rest",
"version": "6.0.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",
"lint:fix": "standard --fix",
"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",
"prepare": "husky install"
},
"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": "^2.0.2",
"husky": "^9.1.6",
"jsdoc-to-markdown": "^9.0.1",
"mocha": "^10.7.3",
"nyc": "^17.0.0",
"proxyquire": "^2.1.3",
"sinon": "^19.0.2",
"socks-proxy-agent": "^8.0.4",
"standard": "^17.1.2"
},
"dependencies": {
"bfx-api-node-models": "^2.0.0",
"bfx-api-node-util": "^1.0.10",
"debug": "4.3.3",
"dirty-chai": "^2.0.1",
"lodash": "^4.17.15",
"node-fetch": "^2.6.9"
},
"standard": {
"ignore": [
"/docs/**/*.js"
]
}
}