-
Notifications
You must be signed in to change notification settings - Fork 50
/
package.json
45 lines (45 loc) · 1.15 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
{
"name": "webpack-hot-server-middleware",
"version": "0.6.1",
"description": "Hot updates Webpack bundles on the server",
"main": "src/index.js",
"typings": "index.d.ts",
"scripts": {
"test": "jest"
},
"jest": {
"testEnvironment": "node",
"setupTestFrameworkScriptFile": "<rootDir>/test/support/setup.js"
},
"repository": {
"type": "git",
"url": "https://github.com/60frames/webpack-hot-server-middleware.git"
},
"author": {
"name": "Richard Scarrott",
"email": "rich@60fram.es"
},
"license": "MIT",
"dependencies": {
"debug": "^3.1.0",
"require-from-string": "^2.0.1",
"source-map-support": "^0.5.3"
},
"peerDependencies": {
"webpack": "*"
},
"devDependencies": {
"babel-jest": "^22.4.1",
"babel-loader": "^7.1.3",
"babel-plugin-istanbul": "^4.1.5",
"babel-preset-es2015": "^6.24.1",
"coveralls": "^3.0.0",
"express": "^4.16.2",
"jest": "^22.4.2",
"supertest": "^3.0.0",
"webpack": "^4.1.1",
"webpack-dev-middleware": "^3.0.1",
"webpack-dev-middleware-legacy": "npm:webpack-dev-middleware@^2.0.2",
"webpack-legacy": "npm:webpack@^3.0.0"
}
}