-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
60 lines (60 loc) · 1.61 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
{
"name": "binance-client",
"version": "3.0.11",
"description": "A node API wrapper for Binance",
"homepage": "https://github.com/MohamedLamineAllal/binance-client",
"repository": "https://github.com/MohamedLamineAllal/binance-client.git",
"main": "dist",
"files": [
"dist",
"index.d.ts"
],
"scripts": {
"build": "rimraf dist && babel src -d dist",
"prepare": "npm run build",
"test": "ava --timeout=10000s",
"cover": "nyc ava",
"report": "npm run cover && nyc report --reporter=text-lcov | coveralls",
"lint": "eslint src",
"launchProxy": "node test/proxyTest/startProxy.js"
},
"dependencies": {
"acorn": "^8.0.5",
"html5-websocket": "^2.0.2",
"isomorphic-fetch": "^2.2.1",
"lodash.zipobject": "^4.1.3",
"reconnecting-websocket": "^3.2.2"
},
"devDependencies": {
"ava": "^0.22.0",
"babel-cli": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-plugin-module-resolver": "^2.7.1",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-0": "^6.24.1",
"coveralls": "^3.0.0",
"dotenv": "^4.0.0",
"eslint": "^4.9.0",
"eslint-config-prettier": "^2.6.0",
"eslint-config-zavatta": "^6.0.1",
"net-proxy": "^1.0.0",
"nyc": "^11.2.1",
"prettier": "^1.7.4",
"proxy-http-agent": "^1.0.0",
"rimraf": "^2.6.2"
},
"ava": {
"require": [
"babel-register",
"babel-polyfill"
],
"files": [
"test/index.js",
"test/proxyTest/index.js"
],
"babel": "inherit"
},
"author": "Allal Mohamed Lamine (original project: Balthazar Gronon)",
"license": "MIT"
}