forked from aishek/axios-rate-limit
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
89 lines (89 loc) · 1.87 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@hokify/axios-rate-limit",
"description": "Rate limit for axios.",
"version": "2.0.4",
"license": "MIT",
"bugs": {
"url": "https://github.com/hokify/axios-rate-limit/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/hokify/axios-rate-limit.git"
},
"homepage": "https://github.com/hokify/axios-rate-limit#readme",
"devDependencies": {
"@hokify/eslint-config": "^1.1.5",
"axios": "^0.18.0",
"husky": "^6.0.0",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"sinon": "^10.0.0",
"yaspeller-ci": "^1.0.2"
},
"peerDependencies": {
"axios": "*"
},
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"prepublishOnly": "npm run build",
"build": "tsc",
"watch": "yarn jest --watch",
"test": "jest --forceExit --runInBand --coverage --detectOpenHandles && yarn lint && yarn spell",
"lint": "eslint --fix src/* __tests__/*.js",
"spell": "yaspeller-ci *.md"
},
"jest": {
"verbose": true,
"moduleFileExtensions": [
"js"
],
"moduleDirectories": [
"node_modules"
],
"coveragePathIgnorePatterns": [
"/node_modules/"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.md": "yaspeller-ci",
"*.js": "eslint"
},
"keywords": [
"axios",
"rate",
"limit"
],
"author": "Alexandr Borisov ([email protected])",
"contributors": ["Simon Tretter ([email protected])"],
"yaspeller": {
"lang": "en",
"dictionary": [
"Cifronomika",
"axios",
"Versioning",
"jsdoc",
"github",
"aishek",
"mcuppi",
"com",
"NodeJS",
"TypeScript",
"Unreleased",
"unref",
"maxRPS",
"setMaxRPS",
"getMaxRPS",
"setRateLimitOptions",
"lodash"
]
}
}