forked from tapio/live-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.51 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "sipa-live-server",
"version": "0.0.3",
"date": "2024-02-05T17:45:36.170Z",
"description": "A web development http server with live reload and hot reload capabilities",
"scripts": {
"lint": "eslint bin/sipa-live-server.js bin/index.js",
"hint": "jshint bin/sipa-live-server.js bin/index.js",
"test": "mocha test --exit && npm run lint"
},
"files": [
"bin/**/*",
"licenses/**/*"
],
"repository": {
"type": "git",
"url": "https://github.com/sipa-js/sipa-live-server.git"
},
"devDependencies": {
"eslint": "^5.9.0",
"jshint": "^2.9.6",
"mocha": "^5.2.0",
"supertest": "^3.3.0"
},
"keywords": [
"front-end",
"development",
"tool",
"server",
"http",
"cli"
],
"author": {
"name": "Matthäus J. N. Beyrle",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/sipa-js/sipa-live-server/issues"
},
"homepage": "https://github.com/sipa-js/sipa-live-server#readme",
"dependencies": {
"chokidar": "^2.0.4",
"colors": "1.4.0",
"connect": "^3.6.6",
"cors": "latest",
"event-stream": "3.3.4",
"faye-websocket": "0.11.x",
"http-auth": "3.1.x",
"morgan": "^1.9.1",
"object-assign": "latest",
"opn": "latest",
"proxy-middleware": "latest",
"send": "latest",
"serve-index": "^1.9.1"
},
"bin": {
"sipa-live-server": "./bin/sipa-live-server.js"
},
"engines": {
"node": ">=0.10.0"
},
"preferGlobal": true
}