{
  "name": "meta-controller",
  "version": "2.0.2",
  "description": "meta-controller",
  "type": "module",
  "exports": {
    ".": {
      "types": "./types/index.d.ts",
      "module": "./esm/index.js",
      "import": "./esm/index.js",
      "require": "./cjs/index.js"
    }
  },
  "main": "./cjs/index.js",
  "types": "./types/index.d.ts",
  "sideEffects": false,
  "scripts": {
    "clean": "rimraf ./build",
    "lint": "eslint --config .eslintrc.cjs ./src ./test",
    "test": "cross-env-shell TS_NODE_TRANSPILE_ONLY=true tap",
    "build": "npm run clean && npm run build:cjs && npm run build:esm",
    "build:cjs": "tsc --project tsconfig-release.json --module commonjs --target es5 --outDir build/cjs",
    "build:esm": "tsc --project tsconfig-release.json --module nodenext --target es2022 --outDir build/esm",
    "copy": "cpy ./package.json ./README.md ./LICENSE.md ./build",
    "postversion": "git push && git push --tags",
    "release": "npm run lint && npm run test && npm run build && npm version patch && npm run copy && npm publish ./build"
  },
  "tap": {
    "reporter": "terse",
    "node-arg": [
      "--loader=ts-node/esm",
      "--no-warnings"
    ],
    "coverage": false,
    "bail": true,
    "only": false
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/rmuchall/meta-controller.git"
  },
  "keywords": [
    "rest"
  ],
  "author": "Rob Muchall <rmuchall@protonmail.com>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/rmuchall/meta-controller/issues"
  },
  "homepage": "https://github.com/rmuchall/meta-controller#readme",
  "devDependencies": {
    "@types/cors": "2.8.13",
    "@types/express": "4.17.17",
    "@types/node": "20.4.8",
    "@types/tap": "15.0.8",
    "@typescript-eslint/eslint-plugin": "6.2.1",
    "@typescript-eslint/parser": "6.2.1",
    "cpy-cli": "5.0.0",
    "cross-env": "7.0.3",
    "eslint": "8.46.0",
    "rimraf": "5.0.1",
    "tap": "16.3.8",
    "ts-node": "10.9.1",
    "typescript": "5.1.6"
  },
  "dependencies": {
    "cors": "2.8.5",
    "express": "4.18.2",
    "http-status-ts": "2.0.1",
    "meta-transformer": "2.0.1",
    "meta-validator": "2.0.2",
    "reflect-metadata": "0.1.13"
  }
}
