-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpackage.json
79 lines (79 loc) · 2.56 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
76
77
78
79
{
"name": "bfx-api-node-rest",
"version": "3.0.11",
"description": "Official Bitfinex REST v1 & v2 API interfaces",
"engines": {
"node": ">=8.3.0"
},
"main": "./dist/index.js",
"husky": {
"hooks": {
"pre-commit": "npm test"
}
},
"scripts": {
"lint": "eslint lib/ examples/ test/ index.js",
"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 && node_modules/.bin/jsdoc --configure .jsdoc.json --verbose",
"build": "babel -q ./index.js -d ./dist && babel -q ./lib -d ./dist/lib && copy package.json dist"
},
"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)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/bitfinexcom/bfx-api-node-rest/issues"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^10.1.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-regenerator": "^6.26.0",
"babel-preset-env": "^1.7.0",
"bfx-api-mock-srv": "^1.0.6",
"chai": "^4.2.0",
"docdash": "^1.2.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsdoc": "^22.0.0",
"eslint-plugin-lodash": "^6.0.0",
"eslint-plugin-mocha": "^6.3.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.2.3",
"jsdoc-to-markdown": "^5.0.0",
"mocha": "^7.1.0",
"nyc": "^15.0.0",
"socks-proxy-agent": "^5.0.0",
"standard": "^14.1.0"
},
"dependencies": {
"bfx-api-node-models": "^1.2.5",
"bfx-api-node-util": "^1.0.4",
"bluebird": "^3.5.5",
"copy": "^0.3.2",
"debug": "^4.1.1",
"lodash": "^4.17.15",
"request": "^2.67.0",
"request-promise": "^4.2.0"
}
}