{
  "name": "cool-path",
  "version": "1.1.2",
  "description": "Path Matcher/Getter/Setter for Object/Array",
  "main": "lib/index.js",
  "scripts": {
    "test": " cross-env NODE_ENV=test jest",
    "build": "tsc --declaration",
    "precommit": "lint-staged && npm run test && npm run build && git add -A"
  },
  "types": "lib/index.d.ts",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/janryWang/cool-path.git"
  },
  "author": "janryWang",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/janryWang/cool-path/issues"
  },
  "homepage": "https://github.com/janryWang/cool-path#readme",
  "devDependencies": {
    "@types/jest": "^24.0.18",
    "babel-jest": "^24.9.0",
    "cross-env": "^5.1.4",
    "husky": "^0.14.3",
    "jest": "^24.9.0",
    "jest-codemods": "^0.20.0",
    "lint-staged": "^4.3.0",
    "prettier": "^1.11.x",
    "ts-jest": "^24.0.2",
    "typescript": "^3.6.2"
  },
  "lint-staged": {
    "src/*.js": [
      "prettier --write --tab-width 2 --no-semi",
      "git add"
    ],
    "dist/*.js": [
      "prettier --write --tab-width 2 --no-semi",
      "git add"
    ],
    "test.js": [
      "prettier --write --tab-width 2 --no-semi",
      "git add"
    ]
  }
}
