-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.07 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
{
"name": "servino",
"version": "2.0.9",
"description": "Zero-configuration http server with hot reload",
"bin": {
"servino": "bin/cli",
"sv": "bin/cli"
},
"main": "src/servino.js",
"files": [
"src",
"bin"
],
"scripts": {
"start": "node bin/cli",
"docs": "node bin/cli -r docs",
"test": "node bin/cli -r tests -w tests -o false"
},
"dependencies": {
"chokidar": "^3.5.3",
"faye-websocket": "^0.11.4",
"finalhandler": "^1.2.0",
"minimist": "^1.2.5",
"open": "^8.4.0",
"serve-index": "^1.9.1",
"serve-static": "^1.15.0"
},
"keywords": [
"http",
"server",
"live",
"reload",
"tool",
"cli",
"http server",
"hot reload",
"http-server",
"live-reload"
],
"author": "Haikel Fazzani",
"license": "MIT",
"homepage": "https://wutility.github.io/servino",
"bugs": {
"url": "https://github.com/wutility/servino-live/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wutility/servino-live.git"
},
"engines": {
"node": ">=10.0.0"
}
}