-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
50 lines (50 loc) · 1.52 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
{
"name": "bfx-api-node-util",
"version": "1.0.11",
"description": "Utilities for the Bitfinex node API",
"engines": {
"node": ">=7"
},
"main": "./index.js",
"scripts": {
"lint": "standard",
"test": "npm run lint && npm run unit",
"unit": "NODE_ENV=test mocha -b --recursive",
"docs": "npm run func_docs",
"func_docs": "node_modules/jsdoc-to-markdown/bin/cli.js lib/*.js > docs/func_docs.md"
},
"repository": {
"type": "git",
"url": "https://github.com/bitfinexcom/bfx-api-node-util.git"
},
"keywords": [
"bitfinex",
"bitcoin",
"BTC"
],
"author": "Bitfinex",
"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)",
"Jacob Plaster <jacob.plaster@bitfinex.com> (https://www.bitfinex.com)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/bitfinexcom/bfx-api-node-util/issues"
},
"homepage": "http://bitfinexcom.github.io/bfx-api-node-util/",
"devDependencies": {
"bfx-api-node-models": "^1.3.3",
"chai": "^4.2.0",
"jsdoc-to-markdown": "^5.0.1",
"mocha": "^6.2.0",
"standard": "^16.0.3"
},
"dependencies": {
"bignumber.js": "9.0.0"
}
}