forked from aishek/axios-rate-limit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.11 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
90
91
92
93
94
95
{
"name": "axios-rate-limit",
"description": "Rate limit for axios.",
"version": "0.0.3",
"license": "MIT",
"bugs": {
"url": "https://github.com/aishek/axios-rate-limit/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/aishek/axios-rate-limit.git"
},
"homepage": "https://github.com/aishek/axios-rate-limit#readme",
"devDependencies": {
"@logux/eslint-config": "^28.1.0",
"axios": "^0.18.0",
"eslint": "^5.16.0",
"eslint-ci": "^1.0.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-es5": "^1.3.1",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-import-helpers": "^0.1.4",
"eslint-plugin-jest": "^22.4.1",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-standard": "^4.0.0",
"husky": "^1.3.1",
"jest": "^24.7.1",
"lint-staged": "^8.1.5",
"sinon": "^7.3.2",
"yaspeller-ci": "^1.0.0"
},
"peerDependencies": {
"axios": "*"
},
"main": "src/index.js",
"files": [
"src/index.js"
],
"scripts": {
"watch": "yarn jest --watch",
"test": "jest --forceExit --runInBand --coverage --detectOpenHandles && yarn lint && yarn spell",
"lint": "eslint-ci src/*.js __tests__/*.js",
"spell": "yaspeller-ci *.md"
},
"jest": {
"verbose": true,
"moduleFileExtensions": [
"js"
],
"moduleDirectories": [
"node_modules"
],
"coveragePathIgnorePatterns": [
"/node_modules/"
]
},
"eslintConfig": {
"plugins": [
"jest"
],
"extends": "@logux/eslint-config/browser",
"env": {
"jest/globals": true
},
"rules": {
"max-len": ["error", { "ignoreComments": true }]
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.md": "yaspeller-ci",
"*.js": "eslint"
},
"keywords": [
"axios",
"rate",
"limit"
],
"author": "Alexandr Borisov ([email protected])",
"yaspeller": {
"lang": "en",
"dictionary": [
"Cifronomika",
"axios",
"Versioning",
"jsdoc"
]
}
}