-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
34 lines (34 loc) · 925 Bytes
/
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
{
"name": "kucoin-futures-node-sdk",
"version": "2.0.7",
"description": "KuCoin Futures API SDK for Node.js language",
"main": "lib/index.js",
"license": "MIT",
"scripts": {
"start": "./node_modules/typescript/bin/tsc --watch",
"build": "./node_modules/typescript/bin/tsc",
"example": "node example/index.js",
"eslint": "eslint ./src/*.ts --ext .tsx",
"test": "jest --coverage"
},
"dependencies": {
"axios": "1.7.4",
"lodash": "4.17.21",
"uuid": "9.0.0",
"ws": "8.17.1"
},
"devDependencies": {
"@types/jest": "^29.5.2",
"@types/lodash": "^4.14.152",
"@types/node": "^14.0.4",
"@types/uuid": "^9.0.1",
"@types/ws": "^8.5.5",
"@typescript-eslint/eslint-plugin": "^3.0.0",
"@typescript-eslint/parser": "^3.0.0",
"eslint": "^7.0.0",
"jest": "^29.5.0",
"prettier": "^2.0.5",
"ts-jest": "^29.1.0",
"typescript": "^5.1.3"
}
}