forked from imcuttle/simple-hot-reload-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.02 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
{
"name": "simple-hot-reload-server",
"version": "1.2.0",
"description": "Set up a server for frontend files & Watch frontend files.",
"scripts": {
"test": "cd test && node ../dist/bin/hrs",
"dev": "babel src -d dist -w -D",
"build": "babel src -d dist -D",
"prepublish": "npm run build"
},
"main": "dist/index.js",
"bin": {
"hrs": "dist/bin/hrs.js"
},
"keywords": [
"hot",
"reload",
"server"
],
"author": "moyu",
"license": "MIT",
"dependencies": {
"cheerio": "^0.22.0",
"express": "^4.15.2",
"express-dirview-middleware": "^1.0.3",
"minimist": "^1.2.0",
"ws": "^6.2.0"
},
"directories": {
"test": "test"
},
"devDependencies": {
"babel-preset-es2015": "^6.24.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/moyuyc/simple-hot-reload-server.git"
},
"bugs": {
"url": "https://github.com/moyuyc/simple-hot-reload-server/issues"
},
"homepage": "https://github.com/moyuyc/simple-hot-reload-server#readme"
}