meyfa/omniwheel

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "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.1.0",
    "@types/express": "4.17.21",
    "@types/mocha": "10.0.6",
    "@types/node": "20.12.2",
    "c8": "9.1.0",
    "eslint": "8.57.0",
    "eslint-plugin-jsdoc": "48.2.2",
    "express": "4.19.2",
    "mocha": "10.4.0",
    "ts-node": "10.9.2",
    "typescript": "5.4.5"
  }
}