UNPKG

magik-server

Version:

A simple HTTP development server with some nice magik.

95 lines 2.69 kB
{ "name": "magik-server", "version": "0.1.5", "description": "A simple HTTP development server with some nice magik.", "main": "dist/index.js", "bin": "dist/cli/index.js", "type": "module", "files": [ "dist", "LICENSE", "README.md" ], "scripts": { "build": "yarn prebuild && node scripts/build.js", "bundle-size": "node scripts/bundle-size.js", "dev": "node scripts/build.js --watch & yarn start", "echo": "echo \"\n\u001b[32m✓ Successfully published version $npm_package_version to the npm registry!\"", "lint": "eslint src --ext .js --fix", "major": "yarn preversion && yarn version major && yarn postversion", "minor": "yarn preversion && yarn version minor && yarn postversion", "patch": "yarn preversion && yarn version patch && yarn postversion", "postversion": "git push --tags && yarn npm publish --tag latest && git push && yarn echo", "prebuild": "yarn lint && yarn test", "prepare": "npm run build", "prepublishOnly": "yarn lint && yarn test && yarn build", "preversion": "yarn lint && yarn test", "publish": "node scripts/version.js && yarn build && yarn npm publish --tag latest && yarn echo", "publish:beta": "node scripts/version.js --beta && yarn build && yarn npm publish --tag beta && yarn echo", "start": "node dist/cli/index.js", "test": "NODE_OPTIONS=--experimental-vm-modules jest" }, "homepage": "https://github.com/magikMaker/magik-server", "repository": { "type": "git", "url": "git@github.com:magikMaker/magik-server.git" }, "preferGlobal": true, "bugs": { "url": "https://github.com/magikMaker/magik-server/issues" }, "keywords": [ "cli", "code", "command", "development", "files", "http", "httpd", "http handling", "http requests", "http server", "http-server", "httpserver", "magik", "method", "mime", "mock", "server", "static", "status", "timeout", "util", "web", "web server", "web-server", "webserver" ], "engines": { "node": ">=20" }, "funding": { "type": "individual", "url": "https://ko-fi.com/magikMaker" }, "author": "Bjørn Wikkeling", "license": "MIT", "readmeFilename": "README.md", "dependencies": { "barva": "^1.0.0", "mime": "^3.0.0", "portfinder": "^1.0.32", "yargs": "^17.7.2" }, "devDependencies": { "@jest/globals": "^29.7.0", "@types/jest": "^29.5.14", "@types/node": "^22.14.0", "esbuild": "^0.25.0", "eslint": "^8.51.0", "eslint-plugin-jest": "^27.4.2", "jest": "^29.7.0", "jest-cli": "^29.7.0" }, "packageManager": "yarn@4.8.1" }