-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
53 lines (53 loc) · 1.63 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
{
"name": "bfx-api-mock-srv",
"version": "1.8.0",
"description": "Bitfinex API server mock library",
"engines": {
"node": ">=7.6.0"
},
"main": "index.js",
"scripts": {
"test": "npm run lint && npm run unit",
"lint": "standard",
"lint:fix": "standard --fix",
"unit": "NODE_ENV=test ./node_modules/.bin/nyc --reporter=lcov --reporter=html mocha -b --recursive",
"docs": "rm -rf docs/*.md && ./node_modules/.bin/jsdoc2md -f index.js 'lib/**/*.js' > docs/reference.md"
},
"repository": {
"type": "git",
"url": "https://github.com/bitfinexcom/bfx-api-mock-srv.git"
},
"keywords": [
"bitfinex",
"bitcoin",
"BTC"
],
"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)",
"Vladimir Voronkov <VSVoronkov@gmail.com>",
"Vigan Abdurrahmani <vigan.abdurrahmani@bitfinex.com> (https://www.bitfinex.com)",
"Sergio López <sergio.rico@bitfinex.com> (https://www.bitfinex.com)"
],
"author": "Bitfinex",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/bitfinexcom/bfx-api-mock-srv/issues"
},
"devDependencies": {
"bfx-api-node-rest": "^3.0.15",
"jsdoc-to-markdown": "^6.0.1",
"mocha": "^7.2.0",
"nyc": "^15.1.0",
"standard": "^17.1.0"
},
"dependencies": {
"body-parser": "^1.19.0",
"debug": "^4.1.1",
"express": "^4.17.1",
"lodash": "^4.17.15",
"ws": "^7.1.2"
}
}