-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
50 lines (50 loc) · 1.11 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
46
47
48
49
50
{
"name": "light-server",
"version": "2.9.1",
"description": "an http server that can watch files, trigger commands and livereload",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/txchen/light-server"
},
"keywords": [
"http",
"server",
"livereload",
"live-reload",
"watch",
"execute",
"dev"
],
"scripts": {
"lint": "eslint bin/* *.js"
},
"bin": {
"light-server": "bin/light-server"
},
"dependencies": {
"commander": "^6.0.0",
"connect": "^3.7.0",
"connect-history-api-fallback": "^1.6.0",
"connect-injector": "^0.4.4",
"gaze": "^1.1.3",
"http-proxy": "^1.18.1",
"morgan": "~1.10.0",
"opener": "^1.5.1",
"parseurl": "^1.3.3",
"serve-index": "^1.9.1",
"serve-static": "~1.14.1",
"spdy": "^4.0.2",
"strip-json-comments": "^3.1.1",
"ws": "^7.3.1"
},
"author": "Tianxiang Chen",
"license": "MIT",
"bugs": {
"url": "https://github.com/txchen/light-server/issues"
},
"homepage": "https://github.com/txchen/light-server",
"devDependencies": {
"eslint": "^7.5.0"
}
}