1
1
mirror of https://github.com/theoludwig/eslint-config-conventions.git synced 2024-09-20 01:35:53 +02:00
eslint-config-conventions/package.json
Théo LUDWIG e6a222d01f
build(deps): update latest
BREAKING CHANGE: peerDependencies:
`eslint@^8.57.0`
`eslint-plugin-promise@^7.0.0`
`eslint-plugin-unicorn@^55.0.0`
`@typescript-eslint/eslint-plugin@^8.0.0`
`@typescript-eslint/parser@^8.0.0`
2024-09-17 23:11:38 +02:00

66 lines
1.8 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"
},
"scripts": {
"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",
"test": "node --test",
"release": "semantic-release"
},
"peerDependencies": {
"eslint": "^8.57.0",
"eslint-plugin-promise": "^7.0.0",
"eslint-plugin-unicorn": "^55.0.0"
},
"devDependencies": {
"@types/eslint": "8.56.12",
"@types/node": "22.5.5",
"@typescript-eslint/eslint-plugin": "8.6.0",
"@typescript-eslint/parser": "8.6.0",
"editorconfig-checker": "5.1.8",
"eslint": "8.57.1",
"eslint-plugin-promise": "7.1.0",
"eslint-plugin-unicorn": "55.0.0",
"markdownlint-cli2": "0.14.0",
"markdownlint-rule-relative-links": "3.0.0",
"prettier": "3.3.3",
"semantic-release": "23.1.1",
"typescript": "5.6.2"
}
}