EndemolShineGroup/git-author-check

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "@endemolshinegroup/git-author-check",
  "description": "A pre-commit tool that validates the commit based on the author's email domain",
  "version": "1.0.1",
  "license": "MIT",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "bin": {
    "git-author-check": "dist/index.js"
  },
  "author": {
    "name": "Endemol Shine Group Technology",
    "url": "https://github.com/EndemolShineGroup"
  },
  "homepage": "https://github.com/EndemolShineGroup/git-author-check",
  "repository": {
    "type": "git",
    "url": "https://github.com/EndemolShineGroup/git-author-check.git"
  },
  "engines": {
    "node": ">=8.0.0",
    "yarn": ">=1.3.0"
  },
  "scripts": {
    "pretest": "rimraf coverage/",
    "test": "jest --no-cache --coverage",
    "prebuild": "rimraf dist/",
    "build": "tsc",
    "postbuild": "chmod +x dist/index.js",
    "build:docs": "rimraf docs/api && typedoc --out docs/api --target es6 --theme minimal --mode file src",
    "semantic-release": "semantic-release",
    "commit": "git-cz",
    "lint": "tslint -p tsconfig.json -t codeFrame 'src/**/*.ts' -e 'src/**/*.spec.ts'"
  },
  "dependencies": {
    "@endemolshinegroup/cosmiconfig-typescript-loader": "^1",
    "chalk": "^2",
    "cosmiconfig": "^5",
    "tslib": "^1.9.3"
  },
  "devDependencies": {
    "@commitlint/cli": "^7",
    "@commitlint/config-conventional": "^7",
    "@endemolshinegroup/cz-github": "^1",
    "@endemolshinegroup/prettier-config": "^1",
    "@endemolshinegroup/tslint-config": "^1",
    "@semantic-release/changelog": "^3",
    "@semantic-release/git": "^7",
    "@types/cosmiconfig": "^5",
    "@types/jest": "^23",
    "@types/node": "^10",
    "commitizen": "^3",
    "husky": "^1",
    "jest": "^23",
    "lint-staged": "^8",
    "prettier": "^1",
    "rimraf": "^2",
    "semantic-release": "^15",
    "ts-jest": "^23",
    "tslint": "^5",
    "tslint-config-prettier": "^1",
    "tslint-eslint-rules": "^5",
    "typedoc": "^0.13.0",
    "typescript": "^3"
  }
}