forked from altangent/ccxws
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.08 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
{
"name": "ccxws",
"version": "0.29.4",
"description": "Websocket client for 20+ cryptocurrency exchanges",
"keywords": [
"bitmex",
"binance",
"coinbase",
"cryptocurrency",
"exchange",
"websocket",
"realtime"
],
"author": "Brian Mancini <[email protected]>",
"license": "MIT",
"main": "src/index.js",
"scripts": {
"test": "mocha-parallel-tests --exit --recursive \"__tests__/**/*.spec.js\"",
"coverage": "nyc --reporter=lcov --reporter=text npm run test",
"test:ci": "npm run coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"repository": "altangent/ccxws",
"dependencies": {
"cloudscraper": "^1.5.1",
"decimal.js": "^10.2.0",
"moment": "^2.24.0",
"pusher-js": "^4.4.0",
"semaphore": "^1.1.0",
"signalr-client": "0.0.17",
"ws": "^7.1.1"
},
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "^3.0.5",
"eslint": "^5.16.0",
"mocha": "^6.2.0",
"mocha-parallel-tests": "^2.2.1",
"nyc": "^14.1.1",
"prettier": "^1.18.2",
"sinon": "^7.3.2"
}
}