forked from ezewer/bfx-api-mock-srv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.01 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
{
"name": "bfx-api-mock-srv",
"version": "0.0.1",
"description": "Bitfinex API server mock library",
"engines": {
"node": ">=6"
},
"main": "index.js",
"scripts": {
"lint": "standard",
"test": "npm run lint && npm run unit",
"unit": "NODE_ENV=test istanbul cover _mocha -- -R spec -b --recursive",
"test-without-coverage": "NODE_ENV=test mocha -R spec -b --recursive"
},
"repository": {
"type": "git",
"url": "https://github.com/bitfinexcom/api-mock-srv.git"
},
"keywords": [
"bitfinex",
"bitcoin",
"BTC"
],
"author": "Cris Mihalache <cris.m@bitfinex.com> (https://www.bitfinex.com)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/bitfinexcom/api-mock-srv/issues"
},
"devDependencies": {
"chai": "^4.1.2",
"cucumber": "^3.2.0",
"request": "^2.83.0",
"standard": "^10.0.2"
},
"dependencies": {
"bluebird": "^3.5.1",
"body-parser": "^1.18.2",
"debug": "^3.1.0",
"express": "^4.16.2",
"ws": "^3.3.2"
}
}