forked from tiagosiebler/binance
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.22 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
{
"name": "binance",
"version": "1.3.3",
"description": "node.js wrapper for the Binance REST and WebSocket APIs",
"main": "./lib/binance.js",
"scripts": {
"test": "mocha",
"cover": "istanbul cover _mocha",
"coveralls": "npm run cover -- --report lcovonly && cat ./coverage/lcov.info | coveralls",
"lint": "eslint lib test util"
},
"dependencies": {
"request": "^2.81.0",
"underscore": "^1.8.3",
"ws": "^3.1.0"
},
"repository": {
"type": "git",
"url": "https://github.com/aarongarvey/binance"
},
"keywords": [
"api",
"bitcoin",
"ethereum",
"cryptocurrency",
"binance",
"btc",
"eth"
],
"author": "Aaron 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/)"
],
"license": "MIT",
"types": "index.d.ts",
"devDependencies": {
"chai": "^4.1.1",
"coveralls": "^3.0.0",
"eslint": "^4.15.0",
"istanbul": "^0.4.5",
"mocha-lcov-reporter": "^1.3.0",
"mocha": "^3.5.0",
"mock-require": "^2.0.2",
"sinon": "^4.1.3"
}
}