UNPKG

@fbartho/danger-plugin-eslint

Version:
99 lines (98 loc) 2.75 kB
{ "name": "@fbartho/danger-plugin-eslint", "description": "Eslint your code with Danger", "author": "Dan Palmer <dan@danpalmer.me>", "repository": { "type": "git", "url": "git+https://github.com/fbartho/danger-plugin-eslint.git" }, "bugs": { "url": "https://github.com/fbartho/danger-plugin-eslint/issues" }, "homepage": "https://github.com/fbartho/danger-plugin-eslint#readme", "keywords": [ "danger", "danger-plugin", "eslint" ], "version": "1.1.0-beta.1", "main": "dist/index.js", "types": "dist/index.d.ts", "scripts-disabled": { "precommit": "lint-staged", "commit": "git-cz", "commitmsg": "validate-commit-msg" }, "scripts": { "build": "tsc", "test": "jest", "predocs": "rm -rf docs/", "docs": "esdoc -c .esdoc.json", "prepublish": "npm run test && npm run build", "semantic-release": "semantic-release --prepare && npm publish --access public && semantic-release post", "npm-manual-release": "npm run prepublish && npm publish --access public && echo 'Reminder: now you check https://npmjs.com/@fbartho/danger-plugin-eslint & then tag'", "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}'", "lint": "eslint \"src/**/*.ts\"" }, "license": "MIT", "engines": { "node": ">=6.0.0" }, "devDependencies": { "@types/jest": "^25.2.3", "@typescript-eslint/eslint-plugin": "^3.0.2", "@typescript-eslint/parser": "^3.0.2", "@types/eslint": "^6.8.1", "commitizen": "^3.0.7", "cz-conventional-changelog": "^2.0.0", "danger": "^10.2.0", "esdoc": "^1.1.0", "eslint": "^6.8.0", "eslint-config-prettier": "^6.11.0", "eslint-plugin-prettier": "^3.1.3", "eslint-plugin-jsdoc": "^26.0.0", "husky": "^1.3.1", "jest": "^26.0.1", "lint-staged": "^8.1.5", "prettier": "^2.0.5", "semantic-release": "^15.13.3", "ts-jest": "^26.0.0", "typescript": "^3.8.0", "validate-commit-msg": "^2.12.1" }, "optionalDependencies": {}, "config": { "commitizen": { "path": "cz-conventional-changelog" } }, "lint-staged": { "*.@(ts|tsx)": [ "eslint --fix", "npm run prettier-write --", "git add" ] }, "jest": { "moduleFileExtensions": [ "ts", "tsx", "js", "json" ], "transform": { ".(ts|tsx)": "ts-jest", ".(js|json)": "babel-jest" }, "testRegex": "(.test)\\.(ts|tsx)$", "testPathIgnorePatterns": [ "\\.snap$", "<rootDir>/node_modules/" ] }, "peerDependencies": { "eslint": "*" } }