mirror of
https://github.com/joelwmale/webhook-action.git
synced 2024-08-25 08:08:00 +00:00
52 lines
1.5 KiB
JSON
52 lines
1.5 KiB
JSON
{
|
|
"name": "eslint-plugin-github",
|
|
"version": "4.1.1",
|
|
"description": "An opinionated collection of ESLint shared configs and rules used by GitHub.",
|
|
"main": "lib/index.js",
|
|
"entries": [
|
|
"lib/formatters/stylish-fixes.js"
|
|
],
|
|
"bin": {
|
|
"eslint-ignore-errors": "bin/eslint-ignore-errors.js"
|
|
},
|
|
"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 && eslint . && mocha tests/"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/github/eslint-plugin-github.git"
|
|
},
|
|
"author": "GitHub, Inc.",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/github/eslint-plugin-github/issues"
|
|
},
|
|
"homepage": "https://github.com/github/eslint-plugin-github#readme",
|
|
"dependencies": {
|
|
"@typescript-eslint/eslint-plugin": ">=2.25.0",
|
|
"@typescript-eslint/parser": ">=2.25.0",
|
|
"eslint-config-prettier": ">=6.10.1",
|
|
"eslint-plugin-eslint-comments": ">=3.0.1",
|
|
"eslint-plugin-import": ">=2.20.1",
|
|
"eslint-plugin-prettier": ">=3.1.2",
|
|
"eslint-rule-documentation": ">=1.0.0",
|
|
"prettier": ">=1.12.0",
|
|
"svg-element-attributes": ">=1.3.1"
|
|
},
|
|
"prettier": "@github/prettier-config",
|
|
"peerDependencies": {
|
|
"eslint": ">=4.19.0"
|
|
},
|
|
"files": [
|
|
"bin/*",
|
|
"lib/*"
|
|
],
|
|
"devDependencies": {
|
|
"@github/prettier-config": "0.0.4",
|
|
"eslint": ">=7.0.0",
|
|
"mocha": ">=7.1.1"
|
|
}
|
|
}
|