-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1005 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 1005 Bytes
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
{
"name": "hostr",
"version": "4.0.3",
"type": "module",
"description": "A simple web server for the current working directory. Used for hello world style web sites hosting only files in current directory structure. Watches files and integrates with LiveReload.",
"repository": {
"type": "git",
"url": "git@github.com:henrytseng/hostr.git"
},
"main": "./bin/hostr",
"scripts": {
"watch": "mocha -w tests/*.spec.js",
"test": "mocha tests/*.spec.js"
},
"bin": {
"hostr": "./bin/hostr"
},
"engines": {
"node": ">=22"
},
"author": "Henry Tseng <contact@henrytseng.com> (http://www.henrytseng.com/)",
"license": "MIT",
"keywords": [
"http",
"webserver",
"server",
"command",
"cli",
"simple server"
],
"dependencies": {
"argr": "^2.0.1",
"colors": "^1.1.0",
"mime-types": "^2.1.26",
"minimatch": "^3.0.2",
"tiny-lr": "^1.1.1"
},
"devDependencies": {
"mocha": "^8.0.1",
"yarn": "^1.21.1"
}
}