-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
53 lines (53 loc) · 1.73 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
{
"name": "bfx-api-node-util",
"version": "1.0.3",
"description": "Utilities for the Bitfinex node API",
"engines": {
"node": ">=7"
},
"main": "./dist/index.js",
"scripts": {
"lint": "standard",
"test": "npm run lint && npm run unit",
"unit": "NODE_ENV=test mocha -b --recursive",
"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-util.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-util/issues"
},
"homepage": "http://bitfinexcom.github.io/bfx-api-node-util/",
"devDependencies": {
"babel-eslint": "^10.0.3",
"bfx-api-node-models": "git+http://github.com/bitfinexcom/bfx-api-node-models.git#semver:^1.0.12",
"chai": "^4.2.0",
"mocha": "^6.2.0",
"standard": "^14.1.0"
},
"dependencies": {
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-regenerator": "^6.26.0",
"babel-preset-env": "^1.7.0",
"bignumber.js": "^6.0.0",
"copy": "^0.3.2"
}
}