-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 906 Bytes
/
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
{
"name": "webpack-hud",
"version": "0.1.2",
"main": "lib/index.js",
"description": "Webpack HUD, for showing error messages",
"repository": {
"type": "git",
"url": "git+https://github.com/mvc-works/webpack-hud.git"
},
"bugs": {
"url": "https://github.com/mvc-works/webpack-hud/issues"
},
"homepage": "https://github.com/mvc-works/webpack-hud#readme",
"scripts": {
"compile": "rm -rf lib/ && tsc --outDir lib",
"prepublish": "yarn compile"
},
"keywords": [
"webpack",
"devserver",
"errors",
"hud"
],
"author": "jiyinyiyong",
"license": "MIT",
"dependencies": {
"bottom-tip": "^0.1.0",
"doc-ready": "^1.0.4",
"strip-ansi": "^4.0.0"
},
"devDependencies": {
"awesome-typescript-loader": "^5.2.0",
"typescript": "^3.0.1",
"webpack": "^5.94.0",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.5"
}
}