-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
95 lines (95 loc) · 2.39 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": "webpack-serve",
"version": "4.0.0",
"description": "A CLI for webpack-plugin-serve, providing a premier webpack development server",
"license": "MIT",
"repository": "shellscape/webpack-serve",
"author": "Andrew Powell <andrew@shellscape.org>",
"homepage": "https://github.com/shellscape/webpack-serve",
"bugs": "https://github.com/shellscape/webpack-serve/issues",
"bin": "bin/webpack-serve",
"engines": {
"node": ">= 8.0.0 < 9.0.0 || >= 10.0.0 < 10.14.0 || >= 10.15.0"
},
"scripts": {
"ci:coverage": "nyc npm run test --verbose && 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",
"lint": "eslint --fix --cache bin/* lib test",
"lint-staged": "lint-staged",
"security": "npm audit --audit-level=moderate",
"test": "ava"
},
"files": [
"bin/",
"lib/",
"LICENSE",
"README.md"
],
"peerDependencies": {
"webpack": "^4.29.0"
},
"dependencies": {
"chalk": "^4.1.0",
"decamelize": "^5.0.0",
"import-local": "^3.0.1",
"is-plain-obj": "^3.0.0",
"object-path": "^0.11.5",
"pkg-conf": "^3.0.0",
"rechoir": "^0.7.0",
"v8-compile-cache": "^2.0.2",
"webpack-plugin-serve": "^1.4.1",
"yargs-parser": "^20.2.7"
},
"devDependencies": {
"@babel/preset-env": "^7.2.0",
"@babel/register": "^7.0.0",
"@commitlint/cli": "^12.0.1",
"@commitlint/config-conventional": "^12.0.1",
"ava": "^2.4.0",
"eslint-config-shellscape": "^3.0.0",
"execa": "^5.0.0",
"get-port": "^5.0.0",
"lint-staged": "^10.5.4",
"nyc": "^15.1.0",
"pre-commit": "^1.2.2",
"prettier": "^2.2.1",
"puppeteer": "^1.13.0",
"standard-version": "^9.1.1",
"strip-ansi": "^6.0.0",
"webpack": "^4.29.6",
"webpack-nano": "^1.1.1"
},
"keywords": [
"development",
"devserver",
"serve",
"server",
"webpack"
],
"ava": {
"files": [
"!**/fixtures/**",
"!**/helpers/**"
]
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"nyc": {
"include": [
"lib/*.js"
],
"exclude": [
"lib/client*.js",
"test/"
]
},
"pre-commit": "lint-staged"
}