{
  "name": "typescript-mock-server",
  "version": "1.11.6",
  "description": "Simple mock server that can be used in front end development. Instead of creating json files you can just publish TypeScript objects as json",
  "main": "dist/src/index.js",
  "bin": {
    "typescript-mock-server": "dist/src/index.js"
  },
  "scripts": {
    "prepare": "npm run build",
    "test": "jest",
    "build": "tsc --outDir dist && sed -i '' '1s|.*|#!/usr/bin/env node|' dist/src/index.js && chmod +x dist/src/index.js",
    "example": "npm run build && node dist/src/index.js --path=tms-models --port=5200 --cors=http://localhost:5200",
    "start": "npm run build && node dist/src/index.js",
    "update-deps": "npm update",
    "get-version": "echo $npm_package_version",
    "publish-to-npm": "git tag -a ${npm_package_version} -m \"v${npm_package_version}\" && git push origin ${npm_package_version} && npm publish"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/GuyT07/typescript-mock-server.git"
  },
  "keywords": [
    "mock server",
    "testing",
    "stub",
    "typescript"
  ],
  "author": "Guy Theuws",
  "license": "ISC",
  "bugs": {
    "url": "https://github.com/GuyT07/typescript-mock-server/issues"
  },
  "homepage": "https://genydev.nl",
  "funding": {
    "url": "https://genydev.nl"
  },
  "devDependencies": {
    "@types/cors": "^2.8.19",
    "prettier": "^3.6.2"
  },
  "dependencies": {
    "@types/express": "^5.0.5",
    "@types/node": "^24.10.1",
    "cors": "^2.8.5",
    "express": "^5.1.0",
    "ts-node": "^10.9.2",
    "tslog": "^3.3.3",
    "typescript": "^5.9.3",
    "ts-node-dev": "2.0.0"
  },
  "prettier": {
    "arrowParens": "avoid",
    "bracketSpacing": true,
    "endOfLine": "lf",
    "htmlWhitespaceSensitivity": "css",
    "jsxBracketSameLine": false,
    "proseWrap": "preserve",
    "requirePragma": false,
    "semi": true,
    "singleQuote": true,
    "tabWidth": 2,
    "trailingComma": "es5",
    "useTabs": false,
    "printWidth": 240,
    "quoteProps": "as-needed"
  }
}
