forked from bitfinexcom/bfx-api-node-rest
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.99 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.99 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
{
"name": "bfx-api-node-rest",
"version": "1.1.1",
"description": "Official Bitfinex REST v1 & v2 API interfaces",
"engines": {
"node": ">=7"
},
"main": "./dist/index.js",
"scripts": {
"lint": "standard",
"test": "npm run lint && npm run unit",
"unit": "NODE_ENV=test mocha -b --recursive",
"rest2_docs": "node_modules/jsdoc-to-markdown/bin/cli.js lib/rest2.js > doc/rest2.md",
"rest1_docs": "node_modules/jsdoc-to-markdown/bin/cli.js lib/rest1.js > doc/rest1.md",
"docs": "npm run rest2_docs && npm run rest1_docs",
"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"
],
"contributors": [
"Ezequiel Wernicke <ezequiel.wernicke@bitfinex.com> (https://www.bitfinex.com)",
"Josh Rossi <josh@bitfinex.com> (https://www.bitfinex.com)",
"Cris Mihalache <cris.m@bitfinex.com> (https://www.bitfinex.com)",
"Robert Kowalski <robert@bitfinex.com> (https://www.bitfinex.com)",
"Simone Poggi <simone@bitfinex.com> (https://www.bitfinex.com)",
"Paolo Ardoino <paolo@bitfinex.com> (https://www.bitfinex.com)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/bitfinexcom/bfx-api-node-rest/issues"
},
"devDependencies": {
"bfx-api-mock-srv": "git+https://github.com/bitfinexcom/bfx-api-mock-srv.git",
"babel-cli": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-regenerator": "^6.26.0",
"babel-preset-env": "^1.7.0",
"chai": "^3.4.1",
"mocha": "^3.4.2",
"standard": "^12.0.1",
"jsdoc-to-markdown": "^1.3.1"
},
"dependencies": {
"bfx-api-node-models": "^1.0.0",
"bfx-api-node-util": "^1.0.0",
"bluebird": "^3.5.1",
"copy": "^0.3.2",
"debug": "^2.2.0",
"lodash": "^4.17.4",
"request": "^2.67.0",
"request-promise": "^4.2.0"
}
}