forked from altangent/ccxws
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.52 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": "ccxws",
"version": "0.47.0",
"description": "Websocket client for 37 cryptocurrency exchanges",
"keywords": [
"bitmex",
"binance",
"coinbase",
"cryptocurrency",
"exchange",
"websocket",
"realtime"
],
"author": "Brian Mancini <[email protected]>",
"license": "MIT",
"main": "dist/src/index.js",
"scripts": {
"prepublish": "npm run build",
"build": "tsc",
"format:fix": "prettier --write \"src/**\" \"__tests__/**\"",
"format": "prettier --check \"src/**\" \"__tests__/**\"",
"lint": "eslint src __tests__",
"test": "nyc --reporter=lcov --reporter=text --extension=.ts mocha --require ts-node/register --recursive \"__tests__/**/*.spec.ts\""
},
"repository": "altangent/ccxws",
"dependencies": {
"crc": "^3.8.0",
"decimal.js": "^10.2.0",
"moment": "^2.26.0",
"pusher-js": "^4.4.0",
"semaphore": "^1.1.0",
"ws": "^7.3.0"
},
"devDependencies": {
"@types/chai": "^4.2.18",
"@types/mocha": "^8.2.2",
"@types/node": "^15.6.0",
"@types/semaphore": "^1.1.1",
"@types/sinon": "^10.0.0",
"@types/ws": "^7.4.4",
"@typescript-eslint/eslint-plugin": "^4.24.0",
"@typescript-eslint/parser": "^4.24.0",
"chai": "^4.3.4",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.3",
"eslint-plugin-prefer-arrow": "^1.2.3",
"mocha": "^8.4.0",
"nyc": "^15.1.0",
"prettier": "^2.3.0",
"sinon": "^10.0.0",
"ts-node": "^10.0.0",
"typescript": "^4.2.4"
}
}