UNPKG

949 BJSONView Raw
1{
2 "name": "httpdir",
3 "version": "2.1.0",
4 "description": "Simple, zero dependency command-line HTTP server for static local files",
5 "author": "Johan Satgé",
6 "bin": {
7 "httpdir": "src/cli.js"
8 },
9 "main": "src/server.js",
10 "scripts": {
11 "test": "jest --config=test/jest.config.js"
12 },
13 "files": [
14 "src/**/*.js",
15 "src/**/*.html",
16 "src/**/*.css",
17 "src/**/*.png",
18 "src/**/*.ico",
19 "package.json",
20 "readme.md",
21 "license.md"
22 ],
23 "repository": {
24 "type": "git",
25 "url": "https://github.com/johansatge/httpdir"
26 },
27 "bugs": {
28 "url": "https://github.com/johansatge/httpdir/issues"
29 },
30 "keywords": [
31 "server",
32 "static",
33 "local",
34 "http",
35 "file",
36 "apache",
37 "nginx",
38 "command-line",
39 "cli"
40 ],
41 "engines": {
42 "node": ">=14"
43 },
44 "preferGlobal": true,
45 "license": "MIT",
46 "devDependencies": {
47 "jest": "^29.4.1",
48 "node-fetch": "^2.6.9"
49 }
50}