-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.98 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.98 KB
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
{
"name": "bfx-api-node-models",
"version": "1.8.2",
"description": "Object models for usage with the Bitfinex node API",
"engines": {
"node": ">=8.3.0"
},
"main": "index.js",
"husky": {
"hooks": {
"pre-commit": "npm test"
}
},
"scripts": {
"lint": "standard",
"test": "npm run lint && npm run unit",
"unit": "NODE_ENV=test nyc --check-coverage --lines 90 --branches 60 --functions 90 --statements 90 --reporter=lcov --reporter=html mocha -b --recursive",
"docs": "rm -rf docs && node_modules/.bin/jsdoc --configure .jsdoc.json --verbose"
},
"repository": {
"type": "git",
"url": "https://github.com/bitfinexcom/bfx-api-node-models.git"
},
"keywords": [
"bitfinex",
"bitcoin",
"BTC"
],
"author": "Bitfinex",
"contributors": [
"Jacob Plaster <jacob.plaster@bitfinex.com> (https://www.bitfinex.com)",
"Ezequiel Wernicke <ezequiel.wernicke@bitfinex.com> (https://www.bitfinex.com)",
"Cris Mihalache <cris.m@bitfinex.com> (https://www.bitfinex.com)",
"Paolo Ardoino <paolo@bitfinex.com> (https://www.bitfinex.com)",
"Vigan Abdurrahmani <vigan.abdurrahmani@bitfinex.com> (https://www.bitfinex.com)",
"Abhishek Shrestha <abhishek.shrestha@bitfinex.com> (https://www.bitfinex.com)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/bitfinexcom/bfx-api-node-models/issues"
},
"homepage": "http://bitfinexcom.github.io/bfx-api-node-models/",
"devDependencies": {
"bfx-api-node-rest": "^5.1.0",
"chai": "^4.2.0",
"docdash": "^1.2.0",
"husky": "^4.2.3",
"jsdoc": "^4.0.3",
"jsdoc-to-markdown": "^5.0.3",
"mocha": "^7.1.0",
"nyc": "^15.0.0",
"standard": "^16.0.3"
},
"dependencies": {
"bfx-api-node-util": "^1.0.10",
"bfx-hf-util": "git+https://github.com/bitfinexcom/bfx-hf-util.git#v1.0.12",
"bluebird": "3.7.2",
"crc-32": "1.2.0",
"debug": "4.1.1",
"lodash": "^4.17.15"
},
"standard": {
"ignore": [
"/docs/**/*.js"
]
}
}