UNPKG

danger-plugin-yarn

Version:

Provides dependency information on dependency changes in a PR

94 lines (93 loc) 2.37 kB
{ "name": "danger-plugin-yarn", "description": "Provides dependency information on dependency changes in a PR", "author": { "name": "Orta Therox", "email": "orta.therox@gmail.com" }, "repository": { "type": "git", "url": "https://github.com/orta/danger-plugin-yarn.git" }, "bugs": { "url": "https://github.com/orta/danger-plugin-yarn/issues" }, "homepage": "https://github.com/orta/danger-plugin-yarn#readme", "keywords": [ "danger", "danger-plugin", "yarn" ], "version": "1.6.0", "main": "dist/index.js", "types": "dist/index.d.ts", "scripts": { "precommit": "lint-staged", "commit": "git-cz", "commitmsg": "validate-commit-msg", "build": "tsc", "test": "jest", "predocs": "rm -rf docs/", "docs": "esdoc -c .esdoc.json", "prepublishOnly": "npm run build", "semantic-release": "semantic-release pre && npm publish && semantic-release post", "prettier": "prettier", "prettier-write": "npm run prettier -- --parser typescript --no-semi --trailing-comma es5 --write --print-width 120", "prettier-project": "npm run prettier-write -- 'src/**/*.{ts,tsx}'" }, "license": "MIT", "engines": { "node": ">=4.0.0" }, "dependencies": { "date-fns": "^1.28.5", "lodash.flatten": "^4.4.0", "lodash.includes": "^4.3.0", "node-fetch": "^2.6.0", "semver": "^5.4.1" }, "devDependencies": { "@types/jest": "^19.2.4", "@types/node": "^10.0.29", "commitizen": "^2.9.6", "cz-conventional-changelog": "^2.0.0", "danger": "*", "esdoc": "^0.5.2", "husky": "^0.13.3", "jest": "^20.0.1", "lint-staged": "^3.4.1", "prettier": "^1.3.1", "semantic-release": "^6.3.6", "ts-jest": "^20.0.0", "tslint": "^5.4.3", "typescript": "^4.6", "validate-commit-msg": "^2.12.1" }, "config": { "commitizen": { "path": "cz-conventional-changelog" } }, "lint-staged": { "*.@(ts|tsx)": [ "tslint --fix", "npm run 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/" ] } }