-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.46 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": "@pxtrn/binance-rate-limit",
"version": "1.0.0",
"description": "node.js rate limit tracker for binance. Let's you verify that you won't hit a rate limit before you send your api request.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"start": "tsc -w",
"tsc": "tsc -d",
"clean": "rm -rf ./dist",
"prepack": "npm run build",
"build": "npm run clean && npm run lint && npm run tsc && npm run test",
"lint": "eslint . --ext .ts --report-unused-disable-directives",
"test": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pixtron/binance-rate-limit.git"
},
"author": "Stefan Aebischer <os@pixtron.ch> (https://pixtron.ch)",
"license": "MIT",
"bugs": {
"url": "https://github.com/pixtron/binance-rate-limit/issues"
},
"homepage": "https://github.com/pixtron/binance-rate-limit#readme",
"devDependencies": {
"@tsconfig/node16": "^1.0.2",
"@types/jest": "^27.4.0",
"@types/node": "^16.11.15",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"eslint": "^8.8.0",
"jest": "^27.4.7",
"ts-jest": "^27.1.3",
"typescript": "^4.5.5"
},
"peerDependencies": {
"axios": "^0.24.0"
},
"peerDependenciesMeta": {
"axios": {
"optional": true
}
},
"keywords": [
"binance",
"rate limit"
],
"engines": {
"node": ">=16"
},
"files": [
"dist/**/*"
]
}