forked from ViewBlock/binance-api-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.36 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
{
"name": "binance-api-node",
"version": "0.10.8",
"description": "A node API wrapper for Binance",
"main": "dist",
"files": [
"dist",
"index.d.ts"
],
"scripts": {
"build": "rm -rf dist && babel src -d dist",
"prepare": "yarn build",
"test": "ava --timeout=10s -v",
"cover": "nyc ava",
"report": "yarn cover && nyc report --reporter=text-lcov | coveralls",
"lint": "eslint src"
},
"dependencies": {
"isomorphic-fetch": "^2.2.1",
"lodash.zipobject": "^4.1.3",
"reconnecting-websocket": "^4.2.0",
"ws": "^7.2.0"
},
"devDependencies": {
"@babel/cli": "^7.7.4",
"@babel/core": "^7.7.4",
"@babel/polyfill": "^7.7.0",
"@babel/preset-env": "^7.7.4",
"@babel/register": "^7.7.4",
"ava": "^2.4.0",
"babel-eslint": "^10.0.3",
"babel-plugin-module-resolver": "^3.2.0",
"coveralls": "^3.0.9",
"dotenv": "^8.2.0",
"eslint": "^6.7.1",
"eslint-config-prettier": "^6.7.0",
"eslint-config-zavatta": "^6.0.3",
"nyc": "^14.1.1",
"prettier": "^1.19.1"
},
"engines": {
"yarn": ">= 1.0.0"
},
"ava": {
"require": [
"@babel/register",
"@babel/polyfill"
],
"files": [
"test/**/*",
"!test/utils.js"
]
},
"author": "Balthazar Gronon <[email protected]>",
"homepage": "https://github.com/Ashlar/binance-api-node",
"license": "MIT"
}