{
  "name": "express-now",
  "version": "0.2.1",
  "description": "Get current status overview of an Express server",
  "main": "dist/index.js",
  "module": "dist/index.mjs",
  "types": "dist/index.d.ts",
  "scripts": {
    "test": "jest --config jest.config.json --coverage --forceExit",
    "dev": "tsnd --rs ./src/index.ts",
    "dev:test": "tsnd --rs ./tests/_app.ts",
    "build": "pnpm bundle && pnpm declaration",
    "bundle": "pnpm bundle:cjs && pnpm bundle:esm",
    "bundle:cjs": "esbuild src/index.ts --bundle --target=esnext --format=cjs --outfile=dist/index.js --platform=node",
    "bundle:esm": "esbuild src/index.ts --bundle --target=esnext --format=esm --outfile=dist/index.mjs --platform=node",
    "declaration": "tsc --project tsconfig.build.json",
    "clean": "pnpm clean:linux || pnpm clean:windows",
    "clean:linux": "rm -rf dist",
    "clean:windows": "rmdir /s /q dist",
    "lint": "eslint src --ext .ts",
    "prettier": "prettier --write ./src/**/*.{ts,js,json,css,scss,md}",
    "prepublishOnly": "pnpm build && pnpm test"
  },
  "homepage": "https://github.com/richeyphu/express-now#readme",
  "repository": "github:richeyphu/express-now",
  "author": "phuritd",
  "license": "MIT",
  "keywords": [
    "express",
    "expressjs",
    "stats",
    "status",
    "uptime",
    "version",
    "node",
    "api",
    "monitoring",
    "middleware",
    "javascript",
    "typescript"
  ],
  "devDependencies": {
    "@types/eslint": "^8.21.2",
    "@types/express": "^4.17.17",
    "@types/jest": "^29.4.1",
    "@types/node": "^18.15.2",
    "@types/prettier": "^2.7.2",
    "@types/supertest": "^2.0.12",
    "@typescript-eslint/eslint-plugin": "^5.55.0",
    "@typescript-eslint/parser": "^5.55.0",
    "esbuild": "^0.17.11",
    "eslint": "^8.36.0",
    "express": "^4.18.2",
    "jest": "^29.5.0",
    "prettier": "^2.8.4",
    "supertest": "^6.3.3",
    "ts-jest": "^29.0.5",
    "ts-node": "^10.9.1",
    "ts-node-dev": "^2.0.0",
    "typescript": "^4.9.5"
  },
  "files": [
    "dist/**/*"
  ]
}
