-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.27 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.27 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
{
"name": "@bitfinex/bfx-facs-http",
"version": "1.1.0",
"description": "Bitfinex HTTP Facility",
"author": "vigan.abd",
"keywords": [
"bitfinex",
"http",
"facility"
],
"scripts": {
"coverage": "nyc --reporter=html mocha",
"lint": "standard",
"format": "standard --fix",
"test": "npm run lint && npm run unit",
"unit": "NODE_ENV=test mocha ./test"
},
"dependencies": {
"@bitfinex/bfx-facs-base": "git+https://github.com/bitfinexcom/bfx-facs-base.git",
"async": "^2.6.3",
"cacheable-lookup": "7.0.0",
"lodash": "^4.17.21",
"node-fetch": "2.6.7"
},
"engines": {
"node": ">=16.0"
},
"main": "index.js",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/bitfinexcom/bfx-facs-http.git"
},
"homepage": "https://github.com/bitfinexcom/bfx-facs-http",
"maintainers": [
{
"name": "vigan.abd",
"email": "vigan.abdurrahmani@bitfinex.com"
},
{
"name": "prdn",
"email": "paolo@bitfinex.com"
}
],
"devDependencies": {
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"dirty-chai": "^2.0.1",
"express": "^4.17.1",
"mocha": "^11.7.5",
"nyc": "^15.1.0",
"sinon": "^11.1.2",
"standard": "^17.1.0"
}
}