-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.44 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.44 KB
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
{
"name": "webpack-watch-server",
"version": "1.2.1",
"description": "A single npm script command to start Webpack and your server in watch mode, with a unified console.",
"license": "MIT",
"author": {
"name": "Jayden Seric",
"email": "me@jaydenseric.com",
"url": "https://jaydenseric.com"
},
"repository": "github:jaydenseric/webpack-watch-server",
"homepage": "https://github.com/jaydenseric/webpack-watch-server#readme",
"bugs": "https://github.com/jaydenseric/webpack-watch-server/issues",
"funding": "https://github.com/sponsors/jaydenseric",
"keywords": [
"webpack",
"watch",
"server"
],
"files": [
"bin"
],
"main": "index.js",
"bin": {
"webpack-watch-server": "./bin/webpack-watch-server.js"
},
"engines": {
"node": "^10.17.0 || ^12.0.0 || >= 13.7.0"
},
"peerDependencies": {
"webpack": "^2 || ^3"
},
"dependencies": {
"chalk": "^2.1.0",
"liftoff": "^2.3.0",
"minimist": "^1.2.0"
},
"devDependencies": {
"eslint": "^7.2.0",
"eslint-config-env": "^14.0.3",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-jsdoc": "^27.0.7",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"prettier": "^2.0.5"
},
"scripts": {
"test": "npm run test:eslint && npm run test:prettier",
"test:eslint": "eslint .",
"test:prettier": "prettier -c .",
"prepublishOnly": "npm test"
}
}