1 | {
|
---|
2 | "name": "webpack-dev-middleware",
|
---|
3 | "version": "5.0.0",
|
---|
4 | "description": "A development middleware for webpack",
|
---|
5 | "license": "MIT",
|
---|
6 | "repository": "webpack/webpack-dev-middleware",
|
---|
7 | "author": "Tobias Koppers @sokra",
|
---|
8 | "homepage": "https://github.com/webpack/webpack-dev-middleware",
|
---|
9 | "bugs": "https://github.com/webpack/webpack-dev-middleware/issues",
|
---|
10 | "main": "dist/cjs.js",
|
---|
11 | "funding": {
|
---|
12 | "type": "opencollective",
|
---|
13 | "url": "https://opencollective.com/webpack"
|
---|
14 | },
|
---|
15 | "engines": {
|
---|
16 | "node": ">= 12.13.0"
|
---|
17 | },
|
---|
18 | "scripts": {
|
---|
19 | "commitlint": "commitlint --from=master",
|
---|
20 | "fmt:check": "prettier \"{**/*,*}.{js,json,md,yml,css}\" --list-different",
|
---|
21 | "lint:js": "eslint --cache src test",
|
---|
22 | "lint": "npm-run-all lint:js fmt:check",
|
---|
23 | "fmt": "npm run fmt:check -- --write",
|
---|
24 | "fix:js": "npm run lint:js -- --fix",
|
---|
25 | "fix": "npm-run-all fix:js fmt",
|
---|
26 | "prepare": "husky install && npm run build",
|
---|
27 | "build": "del dist && babel src -d dist --copy-files",
|
---|
28 | "release": "standard-version",
|
---|
29 | "security": "npm audit",
|
---|
30 | "test:only": "cross-env NODE_ENV=test jest",
|
---|
31 | "test:watch": "npm run test:only -- --watch",
|
---|
32 | "test:coverage": "npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage",
|
---|
33 | "pretest": "npm run lint",
|
---|
34 | "test": "npm run test:coverage"
|
---|
35 | },
|
---|
36 | "files": [
|
---|
37 | "dist"
|
---|
38 | ],
|
---|
39 | "peerDependencies": {
|
---|
40 | "webpack": "^4.0.0 || ^5.0.0"
|
---|
41 | },
|
---|
42 | "dependencies": {
|
---|
43 | "colorette": "^1.2.2",
|
---|
44 | "mem": "^8.1.1",
|
---|
45 | "memfs": "^3.2.2",
|
---|
46 | "mime-types": "^2.1.31",
|
---|
47 | "range-parser": "^1.2.1",
|
---|
48 | "schema-utils": "^3.0.0"
|
---|
49 | },
|
---|
50 | "devDependencies": {
|
---|
51 | "@babel/cli": "^7.14.3",
|
---|
52 | "@babel/core": "^7.14.3",
|
---|
53 | "@babel/preset-env": "^7.14.4",
|
---|
54 | "@commitlint/cli": "^12.1.4",
|
---|
55 | "@commitlint/config-conventional": "^12.1.4",
|
---|
56 | "@webpack-contrib/eslint-config-webpack": "^3.0.0",
|
---|
57 | "babel-jest": "^27.0.2",
|
---|
58 | "chokidar": "^3.5.1",
|
---|
59 | "connect": "^3.7.0",
|
---|
60 | "cross-env": "^7.0.3",
|
---|
61 | "deepmerge": "^4.2.2",
|
---|
62 | "del": "^6.0.0",
|
---|
63 | "del-cli": "^3.0.1",
|
---|
64 | "eslint": "^7.26.0",
|
---|
65 | "eslint-config-prettier": "^8.3.0",
|
---|
66 | "eslint-plugin-import": "^2.23.4",
|
---|
67 | "execa": "^5.0.1",
|
---|
68 | "express": "^4.17.1",
|
---|
69 | "file-loader": "^6.2.0",
|
---|
70 | "husky": "^6.0.0",
|
---|
71 | "jest": "^27.0.3",
|
---|
72 | "lint-staged": "^11.0.0",
|
---|
73 | "npm-run-all": "^4.1.5",
|
---|
74 | "prettier": "^2.3.0",
|
---|
75 | "standard-version": "^9.3.0",
|
---|
76 | "strip-ansi": "^6.0.0",
|
---|
77 | "supertest": "^6.1.3",
|
---|
78 | "webpack": "^5.38.1"
|
---|
79 | },
|
---|
80 | "keywords": [
|
---|
81 | "webpack",
|
---|
82 | "middleware",
|
---|
83 | "development"
|
---|
84 | ]
|
---|
85 | }
|
---|