{
  "name": "layerify",
  "version": "1.0.7",
  "description": "make an un-nested object into a nested object by object keys",
  "main": "dist/index.js",
  "module": "dist/index.mjs",
  "types": "dist/types/src/index.d.ts",
  "repository": {
    "type": "git",
    "url": "https://github.com/xiechao06/layerify.git"
  },
  "scripts": {
    "test": "jest --coverage",
    "test:watch": "jest --coverage --watch",
    "build": "run-s clean tsc rollup build:doc",
    "tsc": "tsc --module commonjs",
    "clean": "rimraf dist",
    "rollup": "rollup -c",
    "build:doc": "typedoc --out doc --mode file --theme minimal --module commonjs src",
    "prepublishOnly": "npm run build && pkg-ok",
    "deploy:doc": "NODE_DEBUG=gh-pages ts-node scripts/deploy-gh-pages.ts",
    "lint": "tslint -p tsconfig.json",
    "semantic-release": "semantic-release",
    "commit": "npx git-cz",
    "lint-staged": "lint-staged",
    "report-coverage": "cat ./coverage/lcov.info | coveralls",
    "serve:doc": "run-p _serve:doc _open-doc",
    "_serve:doc": "serve doc/",
    "_open-doc": "sleep 0.1; opn http://127.0.0.1:5000",
    "ban": "ban"
  },
  "author": "xiechao06 <xiechao06@gmail.com>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/xiechao06/layerify/issues"
  },
  "homepage": "https://github.com/xiechao06/layerify#readme",
  "devDependencies": {
    "@babel/core": "^7.9.0",
    "@babel/preset-env": "^7.9.0",
    "@babel/register": "^7.9.0",
    "@commitlint/cli": "^7.5.2",
    "@commitlint/config-conventional": "^7.5.0",
    "@types/gh-pages": "^2.0.0",
    "@types/jest": "^24.0.11",
    "ban-sensitive-files": "^1.9.7",
    "commitizen": "^3.0.7",
    "coveralls": "^3.0.3",
    "cz-conventional-changelog": "^2.1.0",
    "gh-pages": "^2.0.1",
    "husky": "^1.3.1",
    "i": "^0.3.6",
    "jest": "^24.5.0",
    "lint-staged": "^8.1.5",
    "npm": "^6.14.3",
    "npm-run-all": "^4.1.5",
    "opn-cli": "^4.0.0",
    "pkg-ok": "^2.3.1",
    "prettier": "^2.0.0",
    "rimraf": "^2.6.3",
    "rollup": "^2.0.0",
    "rollup-plugin-commonjs": "^9.2.1",
    "rollup-plugin-node-resolve": "^4.0.1",
    "rollup-plugin-sourcemaps": "^0.4.2",
    "rollup-plugin-typescript2": "^0.20.1",
    "semantic-release-cli": "^4.1.1",
    "serve": "^11.0.0",
    "ts-jest": "^24.0.0",
    "ts-node": "^8.0.3",
    "tslint": "^5.14.0",
    "tslint-config-airbnb": "^5.11.1",
    "tslint-config-prettier": "^1.18.0",
    "tslint-config-standard": "^8.0.1",
    "typedoc": "^0.17.3",
    "typescript": "^3.8.3"
  },
  "config": {
    "commitizen": {
      "path": "./node_modules/cz-conventional-changelog"
    }
  },
  "husky": {
    "hooks": {
      "pre-commit": "npm run ban && npm run test && lint-staged",
      "commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
    }
  },
  "lint-staged": {
    "*.ts": [
      "prettier --write",
      "git add"
    ]
  }
}
