UNPKG

2.44 kBJSONView Raw
1{
2 "name": "webpack-serve",
3 "version": "4.0.0",
4 "description": "A CLI for webpack-plugin-serve, providing a premier webpack development server",
5 "license": "MIT",
6 "repository": "shellscape/webpack-serve",
7 "author": "Andrew Powell <andrew@shellscape.org>",
8 "homepage": "https://github.com/shellscape/webpack-serve",
9 "bugs": "https://github.com/shellscape/webpack-serve/issues",
10 "bin": "bin/webpack-serve",
11 "engines": {
12 "node": ">= 8.0.0 < 9.0.0 || >= 10.0.0 < 10.14.0 || >= 10.15.0"
13 },
14 "scripts": {
15 "ci:coverage": "nyc npm run test --verbose && nyc report --reporter=text-lcov > coverage.lcov",
16 "ci:lint": "npm run lint && npm run security",
17 "ci:lint:commits": "commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}",
18 "ci:test": "npm run test -- --verbose",
19 "commitlint": "commitlint",
20 "commitmsg": "commitlint -e $GIT_PARAMS",
21 "lint": "eslint --fix --cache bin/* lib test",
22 "lint-staged": "lint-staged",
23 "security": "npm audit --audit-level=moderate",
24 "test": "ava"
25 },
26 "files": [
27 "bin/",
28 "lib/",
29 "LICENSE",
30 "README.md"
31 ],
32 "peerDependencies": {
33 "webpack": "^4.29.0"
34 },
35 "dependencies": {
36 "chalk": "^4.1.0",
37 "decamelize": "^5.0.0",
38 "import-local": "^3.0.1",
39 "is-plain-obj": "^3.0.0",
40 "object-path": "^0.11.5",
41 "pkg-conf": "^3.0.0",
42 "rechoir": "^0.7.0",
43 "v8-compile-cache": "^2.0.2",
44 "webpack-plugin-serve": "^1.4.1",
45 "yargs-parser": "^20.2.7"
46 },
47 "devDependencies": {
48 "@babel/preset-env": "^7.2.0",
49 "@babel/register": "^7.0.0",
50 "@commitlint/cli": "^12.0.1",
51 "@commitlint/config-conventional": "^12.0.1",
52 "ava": "^2.4.0",
53 "eslint-config-shellscape": "^3.0.0",
54 "execa": "^5.0.0",
55 "get-port": "^5.0.0",
56 "lint-staged": "^10.5.4",
57 "nyc": "^15.1.0",
58 "pre-commit": "^1.2.2",
59 "prettier": "^2.2.1",
60 "puppeteer": "^1.13.0",
61 "standard-version": "^9.1.1",
62 "strip-ansi": "^6.0.0",
63 "webpack": "^4.29.6",
64 "webpack-nano": "^1.1.1"
65 },
66 "keywords": [
67 "development",
68 "devserver",
69 "serve",
70 "server",
71 "webpack"
72 ],
73 "ava": {
74 "files": [
75 "!**/fixtures/**",
76 "!**/helpers/**"
77 ]
78 },
79 "lint-staged": {
80 "*.js": [
81 "eslint --fix",
82 "git add"
83 ]
84 },
85 "nyc": {
86 "include": [
87 "lib/*.js"
88 ],
89 "exclude": [
90 "lib/client*.js",
91 "test/"
92 ]
93 },
94 "pre-commit": "lint-staged"
95}