forked from tapio/live-server
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
70 lines (70 loc) · 1.49 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
65
66
67
68
69
70
{
"name": "@compodoc/live-server",
"version": "1.2.3",
"description": "Simple development http server with live reload capability",
"keywords": [
"front-end",
"development",
"tool",
"server",
"http",
"cli"
],
"author": "Tapio Vierros + compodoc",
"dependencies": {
"chokidar": "^3.5.2",
"colors": "1.4.0",
"connect": "^3.7.0",
"cors": "latest",
"event-stream": "4.0.1",
"faye-websocket": "0.11.x",
"http-auth": "4.1.9",
"http-auth-connect": "^1.0.5",
"morgan": "^1.10.0",
"object-assign": "latest",
"open": "8.4.0",
"proxy-middleware": "latest",
"send": "latest",
"serve-index": "^1.9.1"
},
"devDependencies": {
"eslint": "^8.6.0",
"jshint": "^2.13.3",
"mocha": "^9.1.3",
"supertest": "^6.1.6"
},
"scripts": {
"lint": "eslint live-server.js index.js",
"hint": "jshint live-server.js index.js",
"test": "mocha test --exit && npm run lint"
},
"bin": {
"live-server": "./live-server.js"
},
"repository": {
"type": "git",
"url": "https://github.com/compodoc/live-server.git"
},
"bugs": {
"url": "https://github.com/compodoc/live-server/issues"
},
"engines": {
"node": ">=0.10.0"
},
"preferGlobal": true,
"license": "MIT",
"eslintConfig": {
"env": {
"node": true
},
"rules": {
"quotes": 0,
"curly": 0,
"strict": 0,
"no-process-exit": 0,
"eqeqeq": 1,
"no-unused-vars": 1,
"no-shadow": 1
}
}
}