forked from webpack/webpack-dev-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 2.88 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
96
{
"name": "webpack-dev-server",
"version": "2.9.3",
"description": "Serves a webpack app. Updates the browser on changes.",
"license": "MIT",
"repository": "webpack/webpack-dev-server",
"author": "Tobias Koppers @sokra",
"homepage": "http://github.com/webpack/webpack-dev-server",
"maintainers": [
{
"name": "Andrew Powell",
"email": "[email protected]",
"url": "shellscape.org"
}
],
"main": "lib/Server.js",
"bin": "bin/webpack-dev-server.js",
"engines": {
"node": ">=4.7"
},
"scripts": {
"beautify": "npm run lint -- --fix",
"ci": "npm run cover -- --report lcovonly && npm run test",
"cover": "istanbul cover node_modules/mocha/bin/_mocha",
"lint": "eslint bin lib test examples client/{index,live,socket,sockjs,overlay,webpack.config}.js",
"mocha": "mocha --full-trace --check-leaks",
"prepublish": "npm run -s build:live && npm run -s build:index && npm run -s build:sockjs",
"test": "npm run lint && npm run mocha",
"build:live": "webpack ./client/live.js client/live.bundle.js --color --config client/webpack.config.js",
"build:index": "webpack ./client/index.js client/index.bundle.js --color --config client/webpack.config.js",
"build:sockjs": "webpack ./client/sockjs.js client/sockjs.bundle.js --color --config client/webpack.sockjs.config.js"
},
"files": [
"lib/",
"bin",
"client/",
"ssl/"
],
"peerDependencies": {
"webpack": "^2.2.0 || ^3.0.0"
},
"dependencies": {
"ansi-html": "0.0.7",
"array-includes": "^3.0.3",
"bonjour": "^3.5.0",
"chokidar": "^1.6.0",
"compression": "^1.5.2",
"connect-history-api-fallback": "^1.3.0",
"debug": "^3.1.0",
"del": "^3.0.0",
"express": "^4.13.3",
"html-entities": "^1.2.0",
"http-proxy-middleware": "~0.17.4",
"import-local": "^0.1.1",
"internal-ip": "1.2.0",
"ip": "^1.1.5",
"killable": "^1.0.0",
"loglevel": "^1.4.1",
"opn": "^5.1.0",
"portfinder": "^1.0.9",
"selfsigned": "^1.9.1",
"serve-index": "^1.7.2",
"sockjs": "0.3.18",
"sockjs-client": "1.1.4",
"spdy": "^3.4.1",
"strip-ansi": "^3.0.1",
"supports-color": "^4.2.1",
"webpack-dev-middleware": "^1.11.0",
"yargs": "^6.6.0"
},
"devDependencies": {
"codecov.io": "^0.1.6",
"css-loader": "^0.28.5",
"eslint": "^4.5.0",
"eslint-config-webpack": "^1.2.5",
"eslint-plugin-import": "^2.7.0",
"execa": "^0.8.0",
"file-loader": "^0.11.2",
"istanbul": "^0.4.5",
"jquery": "^3.2.1",
"less": "^2.5.1",
"less-loader": "^4.0.5",
"mocha": "^3.0.2",
"mocha-sinon": "^2.0.0",
"pug": "^2.0.0-beta5",
"pug-loader": "^2.3.0",
"should": "^12.0.0",
"sinon": "^3.2.1",
"style-loader": "^0.18.2",
"supertest": "^3.0.0",
"uglifyjs-webpack-plugin": "^1.0.0-beta.2",
"url-loader": "~0.5.6",
"webpack": "^3.0.0",
"ws": "^3.1.0"
}
}