-
Notifications
You must be signed in to change notification settings - Fork 782
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 810 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 810 Bytes
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
{
"name": "bitmex-realtime-api",
"version": "1.5.4",
"description": "A library for interacting with BitMEX's websocket API.",
"main": "index.js",
"repository": "https://github.com/BitMEX/api-connectors.git",
"engines": {
"node": ">=14"
},
"scripts": {
"start": "node example",
"test": "jest",
"lint": "eslint"
},
"keywords": [
"bitmex",
"bitcoin",
"websocket",
"api"
],
"author": "Samuel Reed <samuel.trace.reed@gmail.com> (http://strml.net/)",
"license": "MIT",
"dependencies": {
"debug": "^4.3.4",
"eventemitter2": "^6.4.9",
"lodash": "^4.17.21",
"superagent": "^8.1.2",
"ws": "^8.16.0"
},
"devDependencies": {
"eslint": "^7.11.0",
"eslint-plugin-jest": "^24.1.0",
"jest": "^26.5.3",
"sinon": "^9.2.0"
}
}