mirror of
https://github.com/theoludwig/eslint-config-conventions.git
synced 2024-11-09 22:08:37 +01:00
Théo LUDWIG
113a469ac5
BREAKING CHANGE: peerDependencies: `eslint@^8.52.0` `eslint-plugin-import@^2.28.1` `eslint-plugin-promise@^6.1.1` `eslint-plugin-unicorn@^49.0.0` `@typescript-eslint/eslint-plugin@^6.11.0` `@typescript-eslint/parser@^6.11.0`
80 lines
2.3 KiB
JSON
80 lines
2.3 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": "Théo LUDWIG <contact@theoludwig.fr>",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/theoludwig/eslint-config-conventions.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/theoludwig/eslint-config-conventions/issues"
|
|
},
|
|
"homepage": "https://github.com/theoludwig/eslint-config-conventions#readme",
|
|
"keywords": [
|
|
"eslintconfig",
|
|
"eslint",
|
|
"quality",
|
|
"strict linter",
|
|
"validate",
|
|
"code quality",
|
|
"conventions"
|
|
],
|
|
"main": "index.js",
|
|
"files": [
|
|
"index.js",
|
|
".eslintrc.json"
|
|
],
|
|
"publishConfig": {
|
|
"access": "public",
|
|
"provenance": true
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0",
|
|
"npm": ">=9.0.0"
|
|
},
|
|
"scripts": {
|
|
"lint:commit": "commitlint",
|
|
"lint:editorconfig": "editorconfig-checker",
|
|
"lint:markdown": "markdownlint-cli2",
|
|
"lint:eslint": "eslint . --max-warnings 0 --report-unused-disable-directives --config eslintrc.json",
|
|
"lint:prettier": "prettier . --check",
|
|
"lint:staged": "lint-staged",
|
|
"test": "node --test test/",
|
|
"release": "semantic-release",
|
|
"postinstall": "husky install",
|
|
"prepublishOnly": "pinst --disable",
|
|
"postpublish": "pinst --enable"
|
|
},
|
|
"peerDependencies": {
|
|
"eslint": "^8.53.0",
|
|
"eslint-plugin-import": "^2.29.0",
|
|
"eslint-plugin-promise": "^6.1.1",
|
|
"eslint-plugin-unicorn": "^49.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@commitlint/cli": "18.4.1",
|
|
"@commitlint/config-conventional": "18.4.0",
|
|
"@tsconfig/strictest": "2.0.2",
|
|
"@types/eslint": "8.44.7",
|
|
"@types/node": "20.9.0",
|
|
"@typescript-eslint/eslint-plugin": "6.11.0",
|
|
"@typescript-eslint/parser": "6.11.0",
|
|
"editorconfig-checker": "5.1.1",
|
|
"eslint": "8.53.0",
|
|
"eslint-plugin-import": "2.29.0",
|
|
"eslint-plugin-promise": "6.1.1",
|
|
"eslint-plugin-unicorn": "49.0.0",
|
|
"husky": "8.0.3",
|
|
"lint-staged": "15.1.0",
|
|
"markdownlint-cli2": "0.10.0",
|
|
"markdownlint-rule-relative-links": "2.1.0",
|
|
"pinst": "3.0.0",
|
|
"prettier": "3.1.0",
|
|
"semantic-release": "22.0.7",
|
|
"typescript": "5.2.2"
|
|
}
|
|
}
|