forked from webpack/webpack-dev-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.28 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
{
"name": "webpack-dev-server",
"version": "2.1.0-beta.9",
"author": "Tobias Koppers @sokra",
"description": "Serves a webpack app. Updates the browser on changes.",
"peerDependencies": {
"webpack": "^2.1.0-beta"
},
"dependencies": {
"chokidar": "^1.6.0",
"compression": "^1.5.2",
"connect-history-api-fallback": "^1.3.0",
"express": "^4.13.3",
"http-proxy-middleware": "~0.17.1",
"opn": "4.0.2",
"serve-index": "^1.7.2",
"sockjs": "0.3.18",
"sockjs-client": "1.1.1",
"spdy": "^3.4.1",
"strip-ansi": "^3.0.0",
"supports-color": "^3.1.1",
"webpack-dev-middleware": "^1.4.0",
"yargs": "^4.7.1"
},
"devDependencies": {
"css-loader": "~0.25.0",
"eslint": "^3.4.0",
"file-loader": "~0.9.0",
"istanbul": "^0.4.5",
"jquery": "^2.2.0",
"less": "^2.5.1",
"less-loader": "~2.2.0",
"mocha": "^3.0.2",
"mocha-sinon": "^1.1.6",
"pug": "^2.0.0-beta5",
"pug-loader": "^2.3.0",
"should": "^11.1.0",
"sinon": "^1.17.6",
"style-loader": "~0.13.0",
"supertest": "^2.0.0",
"url-loader": "~0.5.6",
"webpack": "^2.1.0-beta.1"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/webpack/webpack-dev-server.git"
},
"homepage": "http://github.com/webpack/webpack-dev-server",
"main": "lib/Server.js",
"bin": "bin/webpack-dev-server.js",
"engines": {
"node": ">=0.12"
},
"files": [
"lib/",
"bin",
"client/",
"ssl/"
],
"scripts": {
"prepublish": "npm run -s client-live && npm run -s client-index && npm run -s client-sockjs",
"client-live": "webpack ./client/live.js client/live.bundle.js --color --config client/webpack.config.js -p",
"client-index": "webpack ./client/index.js client/index.bundle.js --color --config client/webpack.config.js -p",
"client-sockjs": "webpack ./client/sockjs.js client/sockjs.bundle.js --color --config client/webpack.sockjs.config.js -p",
"lint": "eslint bin lib test examples client/{index,live,socket,sockjs,webpack.config}.js",
"beautify": "npm run lint -- --fix",
"test": "mocha --full-trace --check-leaks",
"posttest": "npm run -s lint",
"cover": "istanbul cover node_modules/mocha/bin/_mocha",
"travis": "npm run cover -- --report lcovonly && npm run lint"
}
}