-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.03 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
{
"name": "@danielbayerlein/hapi-webpack-middleware",
"version": "2.0.0",
"description": "hapi-webpack-middleware is a webpack middleware for hapi.js",
"main": "lib/index.js",
"scripts": {
"lint": "standard --verbose | snazzy",
"test": "npm run lint"
},
"repository": {
"type": "git",
"url": "https://github.com/danielbayerlein/hapi-webpack-middleware.git"
},
"keywords": [
"hapi.js",
"webpack",
"webpack-hot-middleware",
"webpack-dev-middleware",
"Hot Module Replacement",
"HMR",
"LiveReload"
],
"author": "Daniel Bayerlein",
"license": "MIT",
"bugs": {
"url": "https://github.com/danielbayerlein/hapi-webpack-middleware/issues"
},
"homepage": "https://github.com/danielbayerlein/hapi-webpack-middleware#readme",
"devDependencies": {
"snazzy": "^8.0.0",
"standard": "^12.0.1"
},
"peerDependencies": {
"webpack": "^4.0.0",
"webpack-dev-middleware": "^3.0.0",
"webpack-hot-middleware": "^2.0.0"
},
"publishConfig": {
"access": "public"
}
}