{
  "name": "supermon",
  "version": "2.6.0",
  "description": "Nodemon replacement with node_module sync on Docker use",
  "repository": {
    "type": "git",
    "url": "https://github.com/mikkotikkanen/supermon"
  },
  "main": "dist/lib/index.js",
  "bin": {
    "supermon": "./dist/bin/cli.js"
  },
  "engines": {
    "node": ">=8"
  },
  "keywords": [
    "monitor",
    "restart",
    "development",
    "typescript",
    "docker"
  ],
  "author": {
    "name": "Mikko Tikkanen",
    "email": "mikko.tikkanen@gmail.com"
  },
  "license": "ISC",
  "dependencies": {
    "chalk": "^4.1.0",
    "chokidar": "^3.5.1",
    "configstore": "^5.0.1",
    "semver": "^7.3.4",
    "tree-kill": "^1.2.2",
    "update-notifier": "^5.1.0",
    "yargs": "^16.2.0"
  },
  "devDependencies": {
    "@types/configstore": "^4.0.0",
    "@types/jest": "^26.0.20",
    "@types/node": "^14.14.32",
    "@types/semver": "^7.3.4",
    "@types/update-notifier": "^5.0.0",
    "@types/yargs": "^16.0.0",
    "@typescript-eslint/eslint-plugin": "^4.16.1",
    "@typescript-eslint/parser": "^4.16.1",
    "eslint": "^7.21.0",
    "eslint-config-airbnb-base": "^14.2.1",
    "eslint-plugin-import": "^2.22.1",
    "eslint-plugin-jest": "^24.1.8",
    "jest": "^26.6.3",
    "npm-run-all": "^4.1.5",
    "semantic-release": "^17.4.1",
    "ts-jest": "^26.5.3",
    "ts-node": "^9.1.1",
    "typescript": "^4.2.3"
  },
  "scripts": {
    "dev": "tsc --watch",
    "dev-test-server": "ts-node ./src/bin/cli.ts ./dist/test/apps/test-server.js",
    "dev-test-lib": "ts-node ./src/bin/cli.ts",
    "dev-test-help": "ts-node ./src/bin/cli.ts --help",
    "dev-test-version": "ts-node ./src/bin/cli.ts --version",
    "test": "npm-run-all test:*",
    "test:eslint": "eslint --ext .js,.ts .",
    "test:tsc": "tsc --noEmit",
    "test:jest": "jest .",
    "build": "tsc",
    "prepublishOnly": "npm run build",
    "release": "semantic-release"
  }
}
