forked from SimonDegraeve/hapi-webpack-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1008 Bytes
/
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
{
"name": "hapi-webpack-plugin",
"version": "1.3.0",
"description": "Webpack middleware for Hapi. Supports HMR.",
"homepage": "https://github.com/SimonDegraeve/hapi-webpack-plugin",
"main": "./lib/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "babel src --out-dir lib",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/SimonDegraeve/hapi-webpack-plugin.git"
},
"keywords": [
"hapi",
"webpack",
"live-reload",
"dev-server"
],
"author": "Simon Degraeve <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/SimonDegraeve/hapi-webpack-plugin/issues"
},
"dependencies": {
"webpack": "^1.12.9",
"webpack-dev-middleware": "^1.4.0",
"webpack-hot-middleware": "^2.6.0"
},
"devDependencies": {
"babel": "^5.8.33",
"babel-eslint": "^4.1.6",
"eslint": "^1.10.3",
"eslint-plugin-babel": "^3.0.0"
}
}