2020-03-31 20:42:07 +08:00
|
|
|
{
|
2020-03-31 20:57:48 +08:00
|
|
|
"name": "eslint-plugin-github",
|
|
|
|
"version": "3.4.1",
|
|
|
|
"description": "An opinionated collection of ESLint shared configs and rules used by GitHub.",
|
|
|
|
"main": "lib/index.js",
|
|
|
|
"entries": [
|
|
|
|
"lib/formatters/stylish-fixes.js"
|
2020-03-31 20:42:07 +08:00
|
|
|
],
|
|
|
|
"bin": {
|
|
|
|
"eslint-github-init": "bin/eslint-github-init.js",
|
|
|
|
"eslint-ignore-errors": "bin/eslint-ignore-errors.js",
|
|
|
|
"eslint-unused-modules": "bin/eslint-unused-modules.js",
|
|
|
|
"flow-coverage": "bin/flow-coverage.js",
|
|
|
|
"github-lint": "bin/github-lint.js",
|
|
|
|
"npm-check-github-package-requirements": "bin/npm-check-github-package-requirements.js"
|
|
|
|
},
|
2020-03-31 20:57:48 +08:00
|
|
|
"scripts": {
|
|
|
|
"pretest": "mkdir -p node_modules/ && ln -fs $(pwd) node_modules/",
|
|
|
|
"eslint-check": "eslint --print-config .eslintrc.js | eslint-config-prettier-check",
|
|
|
|
"test": "npm run eslint-check && bin/github-lint.js && mocha tests/"
|
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+https://github.com/github/eslint-plugin-github.git"
|
|
|
|
},
|
|
|
|
"author": "GitHub, Inc.",
|
|
|
|
"license": "MIT",
|
2020-03-31 20:42:07 +08:00
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/github/eslint-plugin-github/issues"
|
|
|
|
},
|
2020-03-31 20:57:48 +08:00
|
|
|
"homepage": "https://github.com/github/eslint-plugin-github#readme",
|
|
|
|
"engines": {
|
|
|
|
"node": ">=8.11.1"
|
|
|
|
},
|
2020-03-31 20:42:07 +08:00
|
|
|
"dependencies": {
|
|
|
|
"@typescript-eslint/eslint-plugin": ">=2.5.0",
|
|
|
|
"@typescript-eslint/parser": ">=2.5.0",
|
|
|
|
"babel-eslint": ">=10.0.3",
|
|
|
|
"eslint-config-prettier": ">=6.4.0",
|
|
|
|
"eslint-plugin-eslint-comments": ">=3.0.1",
|
|
|
|
"eslint-plugin-flowtype": ">=4.3.0",
|
|
|
|
"eslint-plugin-graphql": ">=3.0.1",
|
|
|
|
"eslint-plugin-import": ">=2.18.2",
|
|
|
|
"eslint-plugin-jsdoc": ">=15.5.2",
|
|
|
|
"eslint-plugin-jsx-a11y": ">=6.0.0",
|
|
|
|
"eslint-plugin-prettier": ">=2.6.0",
|
|
|
|
"eslint-plugin-react": ">=7.7.0",
|
|
|
|
"eslint-plugin-relay": ">=1.0.0",
|
|
|
|
"eslint-rule-documentation": ">=1.0.0",
|
|
|
|
"inquirer": ">=6.0.0",
|
|
|
|
"prettier": ">=1.12.0",
|
|
|
|
"read-pkg-up": ">=6.0.0",
|
|
|
|
"supports-color": "^7.1.0",
|
|
|
|
"svg-element-attributes": ">=1.2.1"
|
|
|
|
},
|
2020-03-31 20:57:48 +08:00
|
|
|
"peerDependencies": {
|
|
|
|
"eslint": ">=4.19.0",
|
|
|
|
"flow-bin": ">=0.70.0",
|
|
|
|
"graphql": ">=14.0.0"
|
2020-03-31 20:42:07 +08:00
|
|
|
},
|
|
|
|
"files": [
|
|
|
|
"bin/*",
|
|
|
|
"lib/*",
|
|
|
|
"prettier.config.js"
|
|
|
|
],
|
2020-03-31 20:57:48 +08:00
|
|
|
"devDependencies": {
|
|
|
|
"eslint": ">=6.5.1",
|
|
|
|
"flow-bin": ">=0.110.1",
|
|
|
|
"graphql": ">=14.5.8",
|
|
|
|
"mocha": ">=6.2.2",
|
|
|
|
"rimraf": "^3.0.0"
|
|
|
|
}
|
2020-03-31 20:42:07 +08:00
|
|
|
}
|