forked from airicyu/huobi-api-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.73 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": "huobi-api-js",
"version": "1.0.1",
"description": "This is a non-official HuoBi Rest API nodejs module which support for signature version 2.",
"keywords": [],
"main": "dist/lib/main.js",
"module": "dist/lib/main.js",
"types": "dist/types/main.d.ts",
"author": "beardev118",
"repository": {
"type": "git",
"url": "https://github.com/Beardev118/huobi-api-js"
},
"license": "MIT",
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc -p tsconfig.build.json",
"watch": "tsc -p tsconfig.build.json --watch",
"test": "jest --coverage --verbose",
"test:watch": "jest --coverage --watchAll",
"report-coverage": "cat ./coverage/lcov.info | coveralls",
"format": "prettier --write ./src/**.ts ./test/**.ts",
"lint": "eslint ./src ./test --ext .ts"
},
"devDependencies": {
"@tsconfig/node14": "^1.0.0",
"@types/crypto-js": "^4.0.1",
"@types/jest": "^26.0.19",
"@types/node": "^14.14.13",
"@types/qs": "^6.9.5",
"@types/sinon": "^9.0.9",
"@typescript-eslint/eslint-plugin": "^4.10.0",
"@typescript-eslint/parser": "^4.10.0",
"coveralls": "^3.1.0",
"eslint": "^7.15.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-jest": "^24.1.3",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"sinon": "^9.2.2",
"ts-jest": "^26.4.4",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"dependencies": {
"axios": "^0.21.0",
"crypto-js": "^4.0.0",
"moment": "^2.29.1",
"qs": "^6.9.4"
}
}