-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 842 Bytes
/
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
{
"name": "httpdir",
"version": "1.1.0",
"description": "Simple, zero dependency command-line HTTP server for static local files",
"author": "Johan Satgé",
"bin": {
"httpdir": "src/index.js"
},
"scripts": {},
"files": [
"src/**/*.js",
"src/**/*.html",
"src/**/*.css",
"src/**/*.png",
"src/**/*.ico",
"package.json",
"readme.md",
"license.md"
],
"repository": {
"type": "git",
"url": "https://github.com/johansatge/httpdir"
},
"bugs": {
"url": "https://github.com/johansatge/httpdir/issues"
},
"keywords": [
"server",
"static",
"local",
"http",
"file",
"apache",
"nginx",
"command-line",
"cli"
],
"dependencies": {},
"devDependencies": {},
"engines": {
"node": ">=12"
},
"preferGlobal": true,
"license": "MIT"
}