{
  "name": "nurture",
  "version": "3.0.0",
  "description": "A filewatcher",
  "license": "MIT",
  "repository": "laat/nurture",
  "main": "lib/index.js",
  "bin": "lib/cli.js",
  "type": "module",
  "author": {
    "name": "Sigurd Fosseng",
    "email": "sigurd@fosseng.net",
    "url": "https://github.com/laat"
  },
  "engines": {
    "node": ">=14"
  },
  "scripts": {
    "clean": "rimraf lib",
    "build:ts": "tsc",
    "eslint": "eslint -f tap",
    "build": "npm-run-all build:*",
    "lint": "echo no linting",
    "prepublish": "npm run build",
    "test": "npm run lint",
    "watch": "node lib/cli.js build"
  },
  "lint-staged": {
    "*.{js,json,css}": [
      "prettier --write"
    ]
  },
  "files": [
    "lib"
  ],
  "keywords": [
    "laat",
    "watchman",
    "file",
    "fswatcher",
    "watchfile",
    "fs",
    "watching"
  ],
  "devDependencies": {
    "@types/async": "^3.2.12",
    "@types/debounce": "^1.2.1",
    "@types/minimatch": "^3.0.5",
    "@types/multipipe": "^3.0.0",
    "@types/node": "^17.0.21",
    "@types/sane": "^2.0.1",
    "@typescript-eslint/eslint-plugin": "^5.15.0",
    "@typescript-eslint/parser": "^5.15.0",
    "eslint": "^8.11.0",
    "husky": "7.0.4",
    "lint-staged": "12.3.7",
    "npm-run-all": "4.1.5",
    "prettier": "2.6.0",
    "rimraf": "3.0.2",
    "source-map-support": "0.5.21",
    "typescript": "^4.6.2"
  },
  "dependencies": {
    "async": "^3.2.3",
    "chalk": "^5.0.1",
    "debounce": "^1.2.1",
    "escape-string-regexp": "^5.0.0",
    "find-up": "^6.3.0",
    "json5": "^2.2.0",
    "minimatch": "^5.0.1",
    "multipipe": "^4.0.0",
    "ora": "^6.1.0",
    "sane": "^5.0.1"
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  }
}
