forked from shellscape/webpack-plugin-serve
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 2.89 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
96
97
98
99
100
101
102
103
104
105
106
{
"name": "webpack-plugin-serve",
"version": "0.8.0",
"description": "A Development Server in a Webpack Plugin",
"license": "MPL-2.0",
"repository": "shellscape/webpack-plugin-serve",
"author": "shellscape",
"homepage": "https://github.com/shellscape/webpack-plugin-serve",
"bugs": "https://github.com/shellscape/webpack-plugin-serve/issues",
"bin": "",
"main": "lib/index.js",
"engines": {
"node": ">= 8.0.0 < 9.0.0 || >= 10.0.0 < 10.14.0 || >= 10.15.0"
},
"scripts": {
"ci:coverage": "nyc npm run test && nyc report --reporter=text-lcov > coverage.lcov",
"ci:lint": "npm run lint && npm run security",
"ci:lint:commits": "commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}",
"ci:test": "npm run test -- --verbose",
"commitlint": "commitlint",
"commitmsg": "commitlint -e $GIT_PARAMS",
"dev": "npm run dev:clean && node node_modules/webpack-nano/bin/wp --config test/fixtures/simple/webpack.config.js",
"dev:clean": "del test/fixtures/multi/output/* test/fixtures/simple/output/*",
"dev:multi": "npm run dev:clean && node node_modules/webpack-nano/bin/wp --config test/fixtures/multi/webpack.config.js",
"faq:toc": "echo 'temporarily disabled' # markdown-toc -i .github/FAQ.md",
"lint": "eslint --fix --cache lib test",
"lint-staged": "lint-staged",
"security": "npm audit",
"test": "ava"
},
"files": [
"client.js",
"lib/",
"README.md",
"LICENSE"
],
"peerDependencies": {
"webpack": "^4.20.2"
},
"dependencies": {
"chalk": "^2.4.1",
"connect-history-api-fallback": "^1.5.0",
"globby": "^9.2.0",
"http-proxy-middleware": "^0.19.0",
"is-promise": "^2.1.0",
"joi": "^14.3.0",
"koa": "^2.5.3",
"koa-compress": "^3.0.0",
"koa-connect": "^2.0.1",
"koa-route": "^3.2.0",
"koa-static": "^5.0.0",
"loglevelnext": "^3.0.0",
"nanoid": "^2.0.0",
"onetime": "^3.0.0",
"opn": "^5.4.0",
"p-defer": "^1.0.0",
"strip-ansi": "^5.0.0",
"ws": "^6.0.0"
},
"devDependencies": {
"@commitlint/cli": "^7.1.2",
"@commitlint/config-conventional": "^7.1.2",
"ava": "^1.4.1",
"cpy": "^7.0.1",
"del": "^3.0.0",
"del-cli": "^1.1.0",
"eslint": "^5.6.1",
"eslint-config-shellscape": "^2.0.2",
"execa": "^1.0.0",
"get-port": "^4.0.0",
"lint-staged": "^8.1.0",
"make-dir": "^2.0.0",
"node-fetch": "^2.2.0",
"nyc": "^13.0.1",
"pre-commit": "^1.2.2",
"prettier": "^1.14.3",
"puppeteer": "^1.11.0",
"standard-version": "^4.4.0",
"webpack": "^4.28.1",
"webpack-nano": "^0.6.1"
},
"keywords": [
"dev",
"development",
"devserver",
"serve",
"server",
"webpack"
],
"pre-commit": "lint-staged",
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"nyc": {
"include": [
"lib/*.js"
],
"exclude": [
"lib/client*.js",
"test/"
]
}
}