forked from tiagosiebler/binance
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.76 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
{
"name": "binance",
"version": "1.3.5",
"description": "node.js wrapper for the Binance REST and WebSocket APIs",
"main": "./lib/binance.js",
"scripts": {
"test": "mocha",
"cover": "nyc --reporter=html --reporter=text mocha",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"lint": "eslint lib test util && prettier --check lib/**/* test/**/* util/**/*",
"lintfix": "eslint lib test util --fix && prettier --write lib/**/* test/**/* util/**/*",
"precommit": "yarn test && yarn lint"
},
"dependencies": {
"bignumber.js": "^9.0.0",
"request": "^2.88.2",
"underscore": "^1.8.3",
"ws": "^3.3.1"
},
"repository": {
"type": "git",
"url": "https://github.com/zoeyg/binance"
},
"keywords": [
"api",
"bitcoin",
"ethereum",
"cryptocurrency",
"binance",
"btc",
"eth"
],
"author": "Zoey Garvey",
"contributors": [
"Clifford Roche <[email protected]> (http://www.cliffordroche.ca)",
"Aslam Hadi H <[email protected]> (https://www.commitcode.com)",
"Andrey Vorobyov <[email protected]>",
"Gavy Aggarwal (http://gavyaggarwal.com/)",
"Tiago Siebler (https://github.com/tiagosiebler)",
"Tony Pettigrew (https://github.com/NeverEnder4)",
"Chris <[email protected]> (https://github.com/apexearth)"
],
"license": "MIT",
"devDependencies": {
"chai": "^4.1.1",
"coveralls": "^3.0.9",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"mocha": "^7.1.0",
"mock-require": "^2.0.2",
"nyc": "^15.0.0",
"prettier": "^1.19.1",
"sinon": "^9.0.1"
}
}