1
1
mirror of https://github.com/theoludwig/eslint-config-conventions.git synced 2024-11-13 22:43:13 +01:00
eslint-config-conventions/package.json
Théo LUDWIG 55a46104da
feat!: add eslint-plugin-import-x rules
BREAKING CHANGE:
peerDependencies: `eslint-plugin-import-x@^4.3.1`

Fixes #3
2024-10-07 17:42:09 +02:00

70 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": "eslint.config.js",
"types": "index.d.ts",
"type": "module",
"files": [
"eslint.config.js",
"index.d.ts"
],
"publishConfig": {
"access": "public",
"provenance": true
},
"engines": {
"node": ">=20.9.0"
},
"scripts": {
"lint:editorconfig": "editorconfig-checker",
"lint:eslint": "eslint . --max-warnings 0 --config eslint.config.mjs",
"lint:prettier": "prettier . --check",
"inspect": "eslint --inspect-config",
"test": "node --test",
"release": "semantic-release"
},
"peerDependencies": {
"eslint": "^9.12.0",
"eslint-plugin-promise": "^7.1.0",
"eslint-plugin-unicorn": "^56.0.0",
"eslint-plugin-import-x": "^4.3.1",
"globals": "^15.10.0",
"typescript-eslint": "^8.8.0"
},
"devDependencies": {
"@types/eslint__js": "8.42.3",
"@types/node": "22.7.4",
"globals": "15.10.0",
"editorconfig-checker": "6.0.0",
"eslint": "9.12.0",
"eslint-plugin-promise": "7.1.0",
"eslint-plugin-unicorn": "56.0.0",
"eslint-plugin-import-x": "4.3.1",
"typescript-eslint": "8.8.0",
"prettier": "3.3.3",
"semantic-release": "23.1.1",
"typescript": "5.5.4"
}
}