UNPKG

danger-plugin-jira-issue

Version:
75 lines (74 loc) 1.82 kB
{ "name": "danger-plugin-jira-issue", "version": "1.4.1", "description": "Danger plugin to link JIRA issue in pull request", "main": "dist/index.js", "types": "dist/index.d.ts", "files": [ "dist" ], "scripts": { "precommit": "lint-staged", "commitmsg": "validate-commit-msg", "build": "tsc -p tsconfig.json", "lint": "tslint 'src/**/*.ts'", "test": "jest --env=node", "prepublishOnly": "npm run build", "semantic-release": "semantic-release", "travis-deploy-once": "travis-deploy-once" }, "repository": { "type": "git", "url": "https://github.com/macklinu/danger-plugin-jira-issue.git" }, "keywords": [ "danger", "danger-plugin", "jira" ], "author": "Macklin Underdown <macklinu@gmail.com>", "license": "MIT", "bugs": { "url": "https://github.com/macklinu/danger-plugin-jira-issue/issues" }, "homepage": "https://github.com/macklinu/danger-plugin-jira-issue#readme", "engines": { "node": ">= 4.0.0" }, "devDependencies": { "@types/jest": "^21.1.4", "@types/node": "^8.0.6", "husky": "^0.14.1", "jest": "^21.2.1", "lint-staged": "^4.0.0", "prettier": "^1.14.3", "semantic-release": "^15.9.17", "travis-deploy-once": "^5.0.9", "ts-jest": "^21.1.3", "tslint": "^5.11.0", "tslint-config-macklinu": "^1.0.0", "typescript": "^3.1.1", "validate-commit-msg": "^2.12.1" }, "jest": { "transform": { ".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js" }, "testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$", "moduleFileExtensions": [ "ts", "tsx", "js" ] }, "lint-staged": { "*.ts": [ "tslint --fix", "git add" ], "*.json": [ "prettier --write", "git add" ] } }