UNPKG

five-server

Version:

Development Server with Live Reload Capability. (Maintained Fork of Live Server)

96 lines 2.78 kB
{ "name": "five-server", "version": "0.4.4", "description": "Development Server with Live Reload Capability. (Maintained Fork of Live Server)", "main": "lib/index.js", "types": "lib/index.d.ts", "bin": { "live-server": "./lib/bin.js", "five-server": "./lib/bin.js" }, "keywords": [ "browser", "development", "tool", "http", "html", "php", "live", "server", "cli", "preview", "reload", "refresh", "live-server", "live server" ], "scripts": { "depcheck": "npx depcheck", "start": "npm run dev", "dev": "npm run clean && npm-run-all --parallel dev:*", "dev:tsc": "tsc --watch", "dev:client": "webpack --config webpack.client.cjs --watch", "build": "npm run extract && tsc && webpack --config webpack.client.cjs", "clean": "rimraf lib", "prune": "rimraf .cache coverage lib node_modules package-lock.json", "format": "prettier --check src/** client/**/*.ts", "format:write": "prettier --write src/** client/**/*.ts", "lint": "eslint src --ext .ts,.tsx", "lint:fix": "eslint --fix src --ext .ts,.tsx", "extract": "extract version name src/const.ts", "test": "jest --forceExit --silent", "test:full": "npm ci && npm run clean && npm run build && npm run format:write && npm run lint:fix && npm run test", "publish": "publish", "push": "npm run publish", "preReleaseHook": "clean build format:write lint:fix" }, "repository": { "type": "git", "url": "git+https://github.com/yandeu/five-server.git" }, "author": "Yannick Deubel (https://github.com/yandeu)", "license": "SEE LICENSE IN LICENSE", "bugs": { "url": "https://github.com/yandeu/five-server/issues" }, "homepage": "https://github.com/yandeu/five-server#readme", "dependencies": { "@yandeu/open-cjs": "^0.0.3", "chokidar": "^4.0.3", "cors": "^2.8.5", "debug": "^4.3.1", "express6": "^0.1.2", "html-validate": "^7.1.1", "mime-types": "~2.1.24", "node-html-parser": "~5.4.1", "parseurl": "~1.3.3", "selfsigned": "^2.0.0", "ws": "^8.2.0" }, "devDependencies": { "@actions/exec": "^1.0.4", "@types/node": "^18.11.17", "@types/ws": "^8.2.0", "@yandeu/eslint-config": "^0.0.4", "@yandeu/extract": "0.0.3", "@yandeu/prettier-config": "^0.0.4", "eslint": "^8.57.1", "jest": "^29.3.1", "npm-run-all": "^4.1.5", "prettier": "^3.5.3", "publish-cli": "^1.7.0", "puppeteer": "^23.9.0", "rimraf": "^6.0.1", "supertest": "^6.1.3", "ts-loader": "^9.1.1", "typescript": "^5.8.2", "webpack": "^5.35.1", "webpack-cli": "^5.0.1" }, "engines": { "node": ">=16" }, "funding": { "url": "https://github.com/sponsors/yandeu" } }