-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.12 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
{
"name": "loading-screen",
"description": "🚥Loading screen for webpack plugin",
"version": "1.1.1",
"license": "MIT",
"repository": {
"type": "git",
"url": "evillt/loading-screen"
},
"author": "evillt <[email protected]> (https://evila.me)",
"files": [
"lib",
"app-dist",
"*.js",
"!app",
"!poi.config.js"
],
"main": "lib/plugin.js",
"scripts": {
"build": "poi --prod",
"prepublishOnly": "npm run build"
},
"dependencies": {
"connect": "^3.6.6",
"serve-static": "^1.13.2",
"ws": "^7.0.0"
},
"devDependencies": {
"husky": "^1.0.0-rc.13",
"lint-staged": "^7.2.0",
"poi": "^12.6.5",
"prettier": "^1.15.2",
"unfetch": "^4.1.0",
"vue": "^2.6.10",
"vue-template-compiler": "^2.6.10",
"webpack": "^4.30.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"linters": {
"*.{js,json,md}": [
"prettier --write",
"git add"
]
}
},
"keywords": [
"webpack",
"webpack-plugin",
"vue",
"loading-screen",
"it-just-works",
"nuxt"
]
}