-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 978 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 978 Bytes
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
{
"name": "@glints/hapi-webpack-dev-server-plugin",
"version": "3.0.2",
"description": "A plugin for hapi to expose webpack-dev-server.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": "https://github.com/glints-dev/hapi-webpack-dev-server-plugin",
"author": "Wong Yong Jie <yjwong92@gmail.com>",
"license": "MIT",
"private": false,
"scripts": {
"build": "tsc --declaration",
"clean": "rm -r dist/",
"tslint": "tslint --project ."
},
"devDependencies": {
"@glints/tslint-rules": "^1.0.6",
"@types/hapi__hapi": "^19.0.0",
"@types/webpack": "^4.39.8",
"@types/webpack-dev-middleware": "^2.0.3",
"@types/webpack-hot-middleware": "^2.16.5",
"tslint": "^5.20.1",
"typescript": "^3.7.2"
},
"peerDependencies": {
"@hapi/hapi": ">= 18",
"webpack": ">= 4",
"webpack-dev-middleware": ">= 3",
"webpack-hot-middleware": ">= 2"
},
"publishConfig": {
"access": "public"
}
}