-
Notifications
You must be signed in to change notification settings - Fork 768
/
package.json
53 lines (53 loc) · 1.49 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
{
"name": "node-binance-api",
"version": "0.13.1",
"description": "Binance API for node https://github.com/jaggedsoft/node-binance-api",
"main": "node-binance-api.js",
"typings": "node-binance-api.d.ts",
"dependencies": {
"async": "^3.1.0",
"https-proxy-agent": "^3.0.1",
"request": "^2.88.0",
"socks-proxy-agent": "^4.0.2",
"string-hash": "^1.1.3",
"json-bigint": "^1.0.0",
"url": "^0.11.0",
"ws": "^7.2.0"
},
"scripts": {
"test": "mocha",
"test-debug": "mocha --inspect-brk",
"lint": "eslint -c .eslintrc.js node-binance-api.js test.js",
"cover": "istanbul cover _mocha --report lcovonly",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"codacy": "cat ./coverage/lcov.info | codacy-coverage -v",
"codecov": "codecov"
},
"repository": {
"type": "git",
"url": "git://github.com/jaggedsoft/node-binance-api.git"
},
"keywords": [
"binance",
"api"
],
"author": "Jon Eyrick <[email protected]> (https://darkpool.ventures)",
"license": "MIT",
"bugs": {
"url": "https://github.com/jaggedsoft/node-binance-api/issues"
},
"homepage": "https://github.com/jaggedsoft/node-binance-api#readme",
"devDependencies": {
"chai": "^4.2.0",
"chai-counter": "^1.0.0",
"codacy-coverage": "^3.4.0",
"codecov": "^3.6.1",
"coveralls": "^3.0.7",
"eslint": "^6.6.0",
"istanbul": "^0.4.5",
"jsdoc": "^3.6.3",
"mocha": "^6.2.2",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^14.1.1"
}
}