mirror of
https://github.com/theoludwig/eslint-config-conventions.git
synced 2024-11-08 19:11:31 +01:00
0ce46310ed
BREAKING CHANGE: peerDependencies: `eslint-plugin-unicorn@^44.0.0`
75 lines
2.1 KiB
JSON
75 lines
2.1 KiB
JSON
{
|
|
"name": "eslint-config-conventions",
|
|
"version": "0.0.0-development",
|
|
"public": true,
|
|
"description": "ESLint shareable config to enforce strict conventions and good code quality.",
|
|
"author": "Divlo <contact@divlo.fr>",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/Divlo/eslint-config-conventions.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/Divlo/eslint-config-conventions/issues"
|
|
},
|
|
"homepage": "https://github.com/Divlo/eslint-config-conventions#readme",
|
|
"keywords": [
|
|
"eslintconfig",
|
|
"eslint",
|
|
"quality",
|
|
"strict linter",
|
|
"validate",
|
|
"code quality",
|
|
"conventions"
|
|
],
|
|
"main": "index.js",
|
|
"files": [
|
|
"index.js",
|
|
".eslintrc.json"
|
|
],
|
|
"engines": {
|
|
"node": ">=16.0.0",
|
|
"npm": ">=8.0.0"
|
|
},
|
|
"scripts": {
|
|
"lint:commit": "commitlint",
|
|
"lint:editorconfig": "editorconfig-checker",
|
|
"lint:markdown": "markdownlint-cli2",
|
|
"lint:javascript": "eslint \"**/*.{js,jsx,ts,tsx}\" -c \"eslintrc.json\"",
|
|
"lint:prettier": "prettier \".\" --check --ignore-path \".gitignore\"",
|
|
"lint:staged": "lint-staged",
|
|
"test": "tap",
|
|
"release": "semantic-release",
|
|
"postinstall": "husky install",
|
|
"prepublishOnly": "pinst --disable",
|
|
"postpublish": "pinst --enable"
|
|
},
|
|
"peerDependencies": {
|
|
"eslint": "^8.9.0",
|
|
"eslint-plugin-import": "^2.26.0",
|
|
"eslint-plugin-promise": "^6.0.0",
|
|
"eslint-plugin-unicorn": "^44.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@commitlint/cli": "17.1.2",
|
|
"@commitlint/config-conventional": "17.1.0",
|
|
"@types/eslint": "8.4.6",
|
|
"@types/tap": "15.0.7",
|
|
"@typescript-eslint/eslint-plugin": "5.39.0",
|
|
"@typescript-eslint/parser": "5.39.0",
|
|
"editorconfig-checker": "4.0.2",
|
|
"eslint": "8.24.0",
|
|
"eslint-plugin-import": "2.26.0",
|
|
"eslint-plugin-promise": "6.0.1",
|
|
"eslint-plugin-unicorn": "44.0.0",
|
|
"husky": "8.0.1",
|
|
"lint-staged": "13.0.3",
|
|
"markdownlint-cli2": "0.5.1",
|
|
"pinst": "3.0.0",
|
|
"prettier": "2.7.1",
|
|
"semantic-release": "19.0.5",
|
|
"tap": "16.3.0",
|
|
"typescript": "4.8.4"
|
|
}
|
|
}
|