{
  "name": "@makenew/nodets-server",
  "version": "0.1.4",
  "description": "Package skeleton for a TypeScript Node.js server.",
  "type": "module",
  "main": "index.js",
  "typings": "index.d.ts",
  "exports": {
    "import": "./index.js"
  },
  "bin": "./server.js",
  "module": "index.js",
  "sideEffects": false,
  "keywords": [
    "node"
  ],
  "homepage": "https://github.com/makenew/nodets-server",
  "bugs": "https://github.com/makenew/nodets-server/issues",
  "repository": "makenew/nodets-server",
  "license": "MIT",
  "author": {
    "name": "Evan Sosenko",
    "email": "razorx@evansosenko.com"
  },
  "files": [
    "index.js",
    "index.js.map",
    "index.d.ts",
    "server.js",
    "lib",
    "src",
    "!test",
    "!**/*.spec.ts",
    "!**/*.test.ts"
  ],
  "scripts": {
    "start": "tsx watch --ignore './tmp/**/*' --ignore './examples/**/*' src/server.ts",
    "start:inspect": "tsx watch --ignore './tmp/**/*' --ignore './examples/**/*' --inspect src/server.ts",
    "start:test": "tsx src/server.js --test",
    "start:production": "node server.js --production",
    "build": "npm run build:ts",
    "postbuild": "node ./index.js",
    "build:ts": "tsc --project tsconfig.build.json",
    "prebuild:ts": "del 'index.*' 'server.*' lib",
    "postbuild:ts": "tsc-alias --project tsconfig.build.json",
    "typecheck": "tsc",
    "test": "c8 ava",
    "pretest": "tsx src/index.ts",
    "test:update": "ava --update-snapshots",
    "test:watch": "ava --watch",
    "test:debug": "ava debug --break",
    "test:smoke": "ava -- --smoke",
    "lint": "eslint --ignore-path .gitignore --ext .js,.cjs,.mjs,.ts,.tsx .",
    "prelint": "prettier --check --ignore-path .gitignore .",
    "postversion": "git push --follow-tags",
    "example": "tsx examples",
    "example:inspect": "tsx --inspect examples",
    "format": "eslint --ignore-path .gitignore --fix --ext .js,.cjs,.mjs,.ts,.tsx .",
    "preformat": "prettier --write --ignore-path .gitignore .",
    "report": "c8 report"
  },
  "engines": {
    "node": ">=18.12.0",
    "npm": ">= 8.1.0"
  },
  "dependencies": {
    "@godaddy/terminus": "^4.11.2",
    "pino": "^8.10.0",
    "pino-pretty": "^9.1.1",
    "yargs": "^17.6.2"
  },
  "devDependencies": {
    "@ava/get-port": "^2.0.0",
    "@types/node": "^18.11.18",
    "@types/stoppable": "^1.1.1",
    "ava": "^5.0.1",
    "c8": "^7.11.0",
    "del-cli": "^5.0.0",
    "eslint": "^8.9.0",
    "eslint-config-prettier": "^8.4.0",
    "eslint-config-standard-with-typescript": "^34.0.0",
    "landlubber": "^1.0.0",
    "prettier": "^2.3.0",
    "tsc-alias": "^1.8.2",
    "tsx": "^4.15.7",
    "typescript": "^4.9.4"
  }
}
