UNPKG

2.44 kBJSONView Raw
1{
2 "name": "webpack-serve",
3 "version": "3.1.1",
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",
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": "^2.4.2",
37 "decamelize": "^3.0.0",
38 "import-local": "^3.0.1",
39 "is-plain-obj": "^2.0.0",
40 "object-path": "^0.11.4",
41 "pkg-conf": "^3.0.0",
42 "rechoir": "^0.7.0",
43 "v8-compile-cache": "^2.0.2",
44 "webpack-plugin-serve": "^0.11.0",
45 "yargs-parser": "^13.0.0"
46 },
47 "devDependencies": {
48 "@babel/preset-env": "^7.2.0",
49 "@babel/register": "^7.0.0",
50 "@commitlint/cli": "^8.1.0",
51 "@commitlint/config-conventional": "^8.1.0",
52 "ava": "^2.2.0",
53 "eslint": "^6.0.1",
54 "eslint-config-shellscape": "^2.0.2",
55 "execa": "^2.0.3",
56 "get-port": "^5.0.0",
57 "lint-staged": "^9.2.0",
58 "nyc": "^14.1.1",
59 "pre-commit": "^1.2.2",
60 "prettier": "^1.14.3",
61 "puppeteer": "^1.13.0",
62 "standard-version": "^6.0.1",
63 "strip-ansi": "^5.1.0",
64 "webpack": "^4.29.6",
65 "webpack-nano": "^0.6.1"
66 },
67 "keywords": [
68 "development",
69 "devserver",
70 "serve",
71 "server",
72 "webpack"
73 ],
74 "ava": {
75 "files": [
76 "!**/fixtures/**",
77 "!**/helpers/**"
78 ]
79 },
80 "lint-staged": {
81 "*.js": [
82 "eslint --fix",
83 "git add"
84 ]
85 },
86 "nyc": {
87 "include": [
88 "lib/*.js"
89 ],
90 "exclude": [
91 "lib/client*.js",
92 "test/"
93 ]
94 },
95 "pre-commit": "lint-staged"
96}