-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.08 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
{
"name": "repeat-request-minder-webpack-plugin",
"title": "repeat-request-minder-webpack-plugin",
"version": "1.0.0",
"description": "一个可以帮助你检查项目中是否存在重复请求的webpack插件。使用后会自动监听请求,当发现1秒内有发出多次相同的请求时,会toast提示并在控制台上打印请求信息。",
"homepage": "https://github.com/SugarTurboS/repeat-request-minder-webpack-plugin",
"main": "index.js",
"author": {
"name": "sugarteam"
},
"keywords": [
"repeat",
"request",
"minder",
"webpack",
"plugin"
],
"licenses": [
{
"type": "MIT",
"url": "https://github.com/jquery/jquery/blob/master/MIT-LICENSE.txt"
}
],
"repository": {
"type": "git",
"url": "[email protected]:SugarTurboS/repeat-request-minder-webpack-plugin.git"
},
"files": ["dist"],
"dependencies": {
"@babel/core": "^7.11.4",
"babel-loader": "^8.1.0",
"ts-loader": "^8.0.3",
"typescript": "^4.0.2",
"webpack": "^4.44.1"
},
"devDependencies": {
"webpack-cli": "^3.3.12"
}
}