UNPKG

veloze

Version:

A modern and fast express-like webserver for the web

83 lines 1.92 kB
{ "name": "veloze", "version": "1.5.2", "description": "A modern and fast express-like webserver for the web", "keywords": [ "veloze", "web-framework", "router", "connect", "middlewares", "web", "express-like", "http", "htt2" ], "homepage": "https://github.com/commenthol/veloze", "repository": { "type": "git", "url": "https://github.com/commenthol/veloze.git" }, "license": "MIT", "author": "commenthol <commenthol@gmail.com>", "sideEffects": false, "type": "module", "imports": { "#*": { "default": "./src/*" } }, "main": "src/index.js", "types": "types/index.d.ts", "files": [ "docs", "src", "types" ], "mocha": { "color": true, "recursive": true, "timeout": 2000 }, "dependencies": { "@veloze/validate": "^1.0.0", "debug-level": "^4.1.1", "mnemonist": "^0.40.3" }, "devDependencies": { "@types/connect": "^3.4.38", "@types/express": "^5.0.6", "@types/node": "^25.5.0", "c8": "^11.0.0", "consolidate": "^1.0.4", "ejs": "^5.0.1", "eslint": "^10.0.3", "eslint-config-prettier": "^10.1.8", "eslint-plugin-prettier": "^5.5.5", "express": "^5.2.1", "express-hbs": "^2.5.0", "globals": "^17.4.0", "handlebars": "^4.7.8", "mocha": "^11.7.5", "npm-run-all2": "^8.0.4", "rimraf": "^6.1.3", "shelljs": "^0.10.0", "sinon": "^21.0.3", "supertest": "^7.2.2", "typescript": "^5.9.3" }, "engines": { "node": ">=20" }, "scripts": { "all": "npm-run-all lint c8 types", "ci": "CI=true npm-run-all lint c8 types", "changelog": "conv-changelog -t groups -o", "c8": "c8 -r lcov -r text -r html npm t", "lint": "eslint .", "test": "mocha", "test:certs": "sh ./scripts/test-certs.sh", "debug:http2": "NODE_DEBUG_NATIVE=http2 mocha", "types": "rimraf types; tsc" } }