{
  "name": "join-js",
  "description": "A library to map complex database joins to nested objects.",
  "version": "1.1.2",
  "author": "Naresh Bhatia",
  "license": "MIT",
  "homepage": "https://github.com/archfirst/joinjs",
  "repository": {
    "type": "git",
    "url": "https://github.com/archfirst/joinjs.git"
  },
  "main": "dist/index.js",
  "types": "index.d.ts",
  "files": [
    "dist/",
    "index.d.ts",
    "LICENSE"
  ],
  "scripts": {
    "lint": "eslint '{src,test}/**/*.js'",
    "prebuild": "del-cli dist",
    "build": "babel src -d dist",
    "build:local": "npm run lint && npm run test:coverage && npm run build",
    "test": "mocha --require babel-register",
    "test:coverage": "nyc --reporter=lcov --reporter=text mocha --require babel-register",
    "report-coverage": "cat ./coverage/lcov.info | coveralls",
    "cz-commit": "git-cz",
    "docs": "jsdoc src -d apidocs"
  },
  "dependencies": {},
  "devDependencies": {
    "@commitlint/cli": "^11.0.0",
    "@commitlint/config-conventional": "^11.0.0",
    "babel-cli": "^6.26.0",
    "babel-eslint": "^10.1.0",
    "babel-preset-env": "^1.7.0",
    "babel-register": "^6.26.0",
    "chai": "^4.2.0",
    "commitizen": "^4.2.1",
    "coveralls": "^3.1.0",
    "cz-conventional-changelog": "^3.3.0",
    "del-cli": "^3.0.1",
    "eslint": "^7.10.0",
    "husky": "^4.3.0",
    "jsdoc": "^3.6.6",
    "marked": "^1.2.0",
    "mocha": "^8.1.3",
    "nyc": "^15.1.0"
  },
  "husky": {
    "hooks": {
      "commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
    }
  },
  "commitlint": {
    "extends": [
      "@commitlint/config-conventional"
    ],
    "rules": {
      "subject-case": [
        0
      ]
    }
  },
  "config": {
    "commitizen": {
      "path": "node_modules/cz-conventional-changelog"
    }
  }
}
