2022-02-19 16:05:21 +01:00
|
|
|
{
|
|
|
|
"name": "eslint-config-conventions",
|
|
|
|
"version": "0.0.0-development",
|
|
|
|
"public": true,
|
|
|
|
"description": "ESLint shareable config to enforce strict conventions and good code quality.",
|
2023-07-02 15:57:44 +02:00
|
|
|
"author": "Théo LUDWIG <contact@theoludwig.fr>",
|
2022-02-19 16:05:21 +01:00
|
|
|
"license": "MIT",
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2023-07-02 15:57:44 +02:00
|
|
|
"url": "https://github.com/theoludwig/eslint-config-conventions.git"
|
2022-02-19 16:05:21 +01:00
|
|
|
},
|
|
|
|
"bugs": {
|
2023-07-02 15:57:44 +02:00
|
|
|
"url": "https://github.com/theoludwig/eslint-config-conventions/issues"
|
2022-02-19 16:05:21 +01:00
|
|
|
},
|
2023-07-02 15:57:44 +02:00
|
|
|
"homepage": "https://github.com/theoludwig/eslint-config-conventions#readme",
|
2022-02-19 16:05:21 +01:00
|
|
|
"keywords": [
|
|
|
|
"eslintconfig",
|
|
|
|
"eslint",
|
|
|
|
"quality",
|
|
|
|
"strict linter",
|
|
|
|
"validate",
|
|
|
|
"code quality",
|
|
|
|
"conventions"
|
|
|
|
],
|
2024-10-07 17:28:54 +02:00
|
|
|
"main": "eslint.config.js",
|
|
|
|
"types": "index.d.ts",
|
|
|
|
"type": "module",
|
2022-09-01 01:17:47 +02:00
|
|
|
"files": [
|
2024-10-07 17:28:54 +02:00
|
|
|
"eslint.config.js",
|
|
|
|
"index.d.ts"
|
2022-09-01 01:17:47 +02:00
|
|
|
],
|
2023-05-13 15:41:12 +02:00
|
|
|
"publishConfig": {
|
|
|
|
"access": "public",
|
|
|
|
"provenance": true
|
|
|
|
},
|
2022-02-19 16:05:21 +01:00
|
|
|
"engines": {
|
2024-10-07 17:28:54 +02:00
|
|
|
"node": ">=20.9.0"
|
2022-02-19 16:05:21 +01:00
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"lint:editorconfig": "editorconfig-checker",
|
2024-10-07 17:28:54 +02:00
|
|
|
"lint:eslint": "eslint . --max-warnings 0 --config eslint.config.mjs",
|
2023-07-14 23:19:09 +02:00
|
|
|
"lint:prettier": "prettier . --check",
|
2024-10-07 17:28:54 +02:00
|
|
|
"inspect": "eslint --inspect-config",
|
2024-02-08 21:50:33 +01:00
|
|
|
"test": "node --test",
|
2024-07-25 14:00:05 +02:00
|
|
|
"release": "semantic-release"
|
2022-02-19 16:05:21 +01:00
|
|
|
},
|
|
|
|
"peerDependencies": {
|
2024-10-07 17:28:54 +02:00
|
|
|
"eslint": "^9.12.0",
|
|
|
|
"eslint-plugin-promise": "^7.1.0",
|
|
|
|
"eslint-plugin-unicorn": "^56.0.0",
|
2024-10-07 17:42:09 +02:00
|
|
|
"eslint-plugin-import-x": "^4.3.1",
|
2024-10-07 17:28:54 +02:00
|
|
|
"globals": "^15.10.0",
|
|
|
|
"typescript-eslint": "^8.8.0"
|
2022-02-19 16:05:21 +01:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2024-10-07 17:28:54 +02:00
|
|
|
"@types/eslint__js": "8.42.3",
|
2024-09-28 18:50:44 +02:00
|
|
|
"@types/node": "22.7.4",
|
2024-10-07 17:28:54 +02:00
|
|
|
"globals": "15.10.0",
|
2024-09-28 18:50:44 +02:00
|
|
|
"editorconfig-checker": "6.0.0",
|
2024-10-07 17:28:54 +02:00
|
|
|
"eslint": "9.12.0",
|
2024-09-17 23:11:38 +02:00
|
|
|
"eslint-plugin-promise": "7.1.0",
|
2024-10-07 17:28:54 +02:00
|
|
|
"eslint-plugin-unicorn": "56.0.0",
|
2024-10-07 17:42:09 +02:00
|
|
|
"eslint-plugin-import-x": "4.3.1",
|
2024-10-07 17:28:54 +02:00
|
|
|
"typescript-eslint": "8.8.0",
|
2024-07-25 13:51:35 +02:00
|
|
|
"prettier": "3.3.3",
|
2024-05-21 12:58:23 +02:00
|
|
|
"semantic-release": "23.1.1",
|
2024-10-07 17:28:54 +02:00
|
|
|
"typescript": "5.5.4"
|
2022-02-19 16:05:21 +01:00
|
|
|
}
|
|
|
|
}
|