UNPKG

hostr

Version:

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.

43 lines (42 loc) 1 kB
{ "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" } }