danger-plugin-pull-request
Version:
A Danger plugin to verify the completion of a pull request
98 lines (97 loc) • 2.38 kB
JSON
{
"name": "danger-plugin-pull-request",
"description": "A Danger plugin to verify the completion of a pull request",
"author": {
"name": "Rizal Ibnu",
"email": "muhamadrizalibnuabdulah@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/rizalibnu/danger-plugin-pull-request.git"
},
"bugs": {
"url": "https://github.com/rizalibnu/danger-plugin-pull-request/issues"
},
"homepage": "https://github.com/rizalibnu/danger-plugin-pull-request#readme",
"keywords": [
"danger",
"danger-plugin",
"pull-request",
"merge-request"
],
"version": "1.1.4",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"commit": "git-cz",
"build": "tsc",
"test": "jest",
"predocs": "rm -rf docs/",
"docs": "esdoc -c .esdoc.json",
"prepublish": "yarn build",
"semantic-release": "semantic-release",
"prettier": "prettier",
"prettier-write": "yarn prettier",
"prettier-project": "yarn prettier-write -- 'src/**/*.{ts,tsx}'",
"lint": "tslint \"src/**/*.ts\""
},
"license": "MIT",
"engines": {
"node": ">=4.0.0"
},
"devDependencies": {
"@semantic-release/git": "^9.0.0",
"@types/jest": "^25.2.3",
"@types/node": "^14.0.11",
"commitizen": "^4.1.2",
"cz-conventional-changelog": "^3.2.0",
"danger": "*",
"husky": "^4.2.5",
"jest": "^26.0.1",
"lint-staged": "^10.2.9",
"prettier": "^2.0.5",
"semantic-release": "^17.0.8",
"ts-jest": "^26.1.0",
"tslint": "^6.1.2",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.3.0",
"typescript": "^3.9.5",
"validate-commit-msg": "^2.12.1"
},
"optionalDependencies": {
"esdoc": "^1.1.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"lint-staged": {
"*.@(ts|tsx)": [
"tslint --fix",
"yarn prettier-write --",
"git add"
]
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(.test)\\.(ts|tsx)$",
"testPathIgnorePatterns": [
"\\.snap$",
"<rootDir>/node_modules/"
]
},
"husky": {
"hooks": {
"commit-msg": "validate-commit-msg",
"pre-commit": "lint-staged"
}
}
}