1 | {
|
2 | "name": "http-server",
|
3 | "version": "14.1.1",
|
4 | "description": "A simple zero-configuration command-line http server",
|
5 | "main": "./lib/http-server",
|
6 | "repository": {
|
7 | "type": "git",
|
8 | "url": "git://github.com/http-party/http-server.git"
|
9 | },
|
10 | "keywords": [
|
11 | "cli",
|
12 | "command",
|
13 | "static",
|
14 | "http",
|
15 | "https",
|
16 | "http-server",
|
17 | "https-server",
|
18 | "server"
|
19 | ],
|
20 | "scripts": {
|
21 | "start": "node ./bin/http-server",
|
22 | "test": "tap --reporter=spec test/*.test.js",
|
23 | "test-watch": "tap --reporter=spec --watch test/*.test.js"
|
24 | },
|
25 | "files": [
|
26 | "lib",
|
27 | "bin",
|
28 | "doc"
|
29 | ],
|
30 | "man": "./doc/http-server.1",
|
31 | "engines": {
|
32 | "node": ">=12"
|
33 | },
|
34 | "contributors": [
|
35 | {
|
36 | "name": "Charlie Robbins",
|
37 | "email": "charlie.robbins@gmail.com"
|
38 | },
|
39 | {
|
40 | "name": "Marak Squires",
|
41 | "email": "marak.squires@gmail.com"
|
42 | },
|
43 | {
|
44 | "name": "Charlie McConnell",
|
45 | "email": "charlie@charlieistheman.com"
|
46 | },
|
47 | {
|
48 | "name": "Joshua Holbrook",
|
49 | "email": "josh.holbrook@gmail.com"
|
50 | },
|
51 | {
|
52 | "name": "Maciej Małecki",
|
53 | "email": "maciej.malecki@notimplemented.org"
|
54 | },
|
55 | {
|
56 | "name": "Matthew Bergman",
|
57 | "email": "mzbphoto@gmail.com"
|
58 | },
|
59 | {
|
60 | "name": "brad dunbar",
|
61 | "email": "dunbarb2@gmail.com"
|
62 | },
|
63 | {
|
64 | "name": "Dominic Tarr"
|
65 | },
|
66 | {
|
67 | "name": "Travis Person",
|
68 | "email": "travis.person@gmail.com"
|
69 | },
|
70 | {
|
71 | "name": "Jinkwon Lee",
|
72 | "email": "master@bdyne.net"
|
73 | },
|
74 | {
|
75 | "name": "BigBlueHat",
|
76 | "email": "byoung@bigbluehat.com"
|
77 | },
|
78 | {
|
79 | "name": "Daniel Dalton",
|
80 | "email": "daltond2@hawkmail.newpaltz.edu"
|
81 | },
|
82 | {
|
83 | "name": "Jade Michael Thornton",
|
84 | "email": "jademichael@jmthornton.net"
|
85 | }
|
86 | ],
|
87 | "dependencies": {
|
88 | "basic-auth": "^2.0.1",
|
89 | "chalk": "^4.1.2",
|
90 | "corser": "^2.0.1",
|
91 | "he": "^1.2.0",
|
92 | "html-encoding-sniffer": "^3.0.0",
|
93 | "http-proxy": "^1.18.1",
|
94 | "mime": "^1.6.0",
|
95 | "minimist": "^1.2.6",
|
96 | "opener": "^1.5.1",
|
97 | "portfinder": "^1.0.28",
|
98 | "secure-compare": "3.0.1",
|
99 | "union": "~0.5.0",
|
100 | "url-join": "^4.0.1"
|
101 | },
|
102 | "devDependencies": {
|
103 | "eol": "^0.9.1",
|
104 | "eslint": "^4.19.1",
|
105 | "eslint-config-populist": "^4.2.0",
|
106 | "express": "^4.17.1",
|
107 | "request": "^2.88.2",
|
108 | "tap": "^14.11.0"
|
109 | },
|
110 | "bugs": {
|
111 | "url": "https://github.com/http-party/http-server/issues"
|
112 | },
|
113 | "license": "MIT",
|
114 | "preferGlobal": true,
|
115 | "bin": {
|
116 | "http-server": "./bin/http-server"
|
117 | }
|
118 | }
|