forked from binance-exchange/binance-api-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.19 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
{
"name": "binance-api-node",
"version": "0.8.14",
"description": "A node API wrapper for Binance",
"main": "dist",
"scripts": {
"build": "rimraf dist && babel src -d dist",
"test": "ava",
"cover": "nyc ava",
"report": "npm run cover && nyc report --reporter=text-lcov | coveralls",
"lint": "eslint src"
},
"dependencies": {
"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",
"nyc": "^11.2.1",
"prettier": "^1.7.4",
"rimraf": "^2.6.2"
},
"ava": {
"require": [
"babel-register",
"babel-polyfill"
],
"files": [
"test/index.js"
],
"babel": "inherit"
},
"author": "Balthazar Gronon <[email protected]>",
"license": "MIT"
}