UNPKG

omniwheel

Version:

Boilerplate reduction for backend and microservices. Scale your application easily in any direction.

53 lines (52 loc) 1.5 kB
{ "name": "omniwheel", "version": "0.4.2", "description": "Boilerplate reduction for backend and microservices. Scale your application easily in any direction.", "type": "module", "main": "dist/index.js", "types": "dist/index.d.ts", "files": [ "dist" ], "scripts": { "clean": "node -e \"fs.rmSync('./dist',{force:true,recursive:true})\"", "build": "npm run clean && tsc", "lint": "tsc --noEmit -p tsconfig.lint.json && eslint --ignore-path .gitignore .", "lint-fix": "tsc --noEmit -p tsconfig.lint.json && eslint --fix --ignore-path .gitignore .", "test": "mocha --recursive \"test/**/*.test.*\"", "coverage": "c8 --all --src=src --reporter=text --reporter=lcov npm test", "prepack": "npm run build" }, "repository": { "type": "git", "url": "git+https://github.com/meyfa/omniwheel.git" }, "keywords": [ "backend", "microservice", "api-server" ], "author": "Fabian Meyer", "license": "MIT", "bugs": { "url": "https://github.com/meyfa/omniwheel/issues" }, "homepage": "https://github.com/meyfa/omniwheel#readme", "engines": { "node": ">=16", "npm": ">=7" }, "devDependencies": { "@meyfa/eslint-config": "5.0.0", "@types/express": "4.17.17", "@types/mocha": "10.0.1", "@types/node": "18.17.17", "c8": "8.0.0", "eslint": "8.49.0", "eslint-plugin-jsdoc": "46.8.1", "express": "4.18.2", "mocha": "10.2.0", "ts-node": "10.9.1", "typescript": "5.2.2" } }