-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 949 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
46
47
48
49
50
{
"name": "httpdir",
"version": "2.1.0",
"description": "Simple, zero dependency command-line HTTP server for static local files",
"author": "Johan Satgé",
"bin": {
"httpdir": "src/cli.js"
},
"main": "src/server.js",
"scripts": {
"test": "jest --config=test/jest.config.js"
},
"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"
],
"engines": {
"node": ">=14"
},
"preferGlobal": true,
"license": "MIT",
"devDependencies": {
"jest": "^29.4.1",
"node-fetch": "^2.6.9"
}
}