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.",
|
|
|
|
"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",
|
2022-09-01 01:17:47 +02:00
|
|
|
"files": [
|
|
|
|
"index.js",
|
|
|
|
".eslintrc.json"
|
|
|
|
],
|
2022-02-19 16:05:21 +01:00
|
|
|
"engines": {
|
|
|
|
"node": ">=16.0.0",
|
|
|
|
"npm": ">=8.0.0"
|
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"lint:commit": "commitlint",
|
|
|
|
"lint:editorconfig": "editorconfig-checker",
|
2022-08-31 13:17:00 +02:00
|
|
|
"lint:markdown": "markdownlint-cli2",
|
2023-01-10 13:27:35 +01:00
|
|
|
"lint:eslint": "eslint \"**/*.{js,jsx,ts,tsx}\" -c \"eslintrc.json\"",
|
2022-02-19 16:05:21 +01:00
|
|
|
"lint:prettier": "prettier \".\" --check --ignore-path \".gitignore\"",
|
|
|
|
"lint:staged": "lint-staged",
|
2022-03-19 14:28:00 +01:00
|
|
|
"test": "tap",
|
2022-02-19 16:05:21 +01:00
|
|
|
"release": "semantic-release",
|
|
|
|
"postinstall": "husky install",
|
|
|
|
"prepublishOnly": "pinst --disable",
|
|
|
|
"postpublish": "pinst --enable"
|
|
|
|
},
|
|
|
|
"peerDependencies": {
|
|
|
|
"eslint": "^8.9.0",
|
2022-04-06 19:14:13 +02:00
|
|
|
"eslint-plugin-import": "^2.26.0",
|
2022-02-19 16:05:21 +01:00
|
|
|
"eslint-plugin-promise": "^6.0.0",
|
2022-11-21 09:08:19 +01:00
|
|
|
"eslint-plugin-unicorn": "^45.0.0"
|
2022-02-19 16:05:21 +01:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-01-10 13:27:35 +01:00
|
|
|
"@commitlint/cli": "17.4.1",
|
|
|
|
"@commitlint/config-conventional": "17.4.0",
|
|
|
|
"@tsconfig/strictest": "1.0.2",
|
2022-11-21 09:08:19 +01:00
|
|
|
"@types/eslint": "8.4.10",
|
2022-07-12 13:52:53 +02:00
|
|
|
"@types/tap": "15.0.7",
|
2023-01-10 13:27:35 +01:00
|
|
|
"@typescript-eslint/eslint-plugin": "5.48.1",
|
|
|
|
"@typescript-eslint/parser": "5.48.1",
|
2022-02-19 16:05:21 +01:00
|
|
|
"editorconfig-checker": "4.0.2",
|
2023-01-10 13:27:35 +01:00
|
|
|
"eslint": "8.31.0",
|
2022-04-06 19:14:13 +02:00
|
|
|
"eslint-plugin-import": "2.26.0",
|
2022-11-21 09:08:19 +01:00
|
|
|
"eslint-plugin-promise": "6.1.1",
|
2023-01-10 13:27:35 +01:00
|
|
|
"eslint-plugin-unicorn": "45.0.2",
|
|
|
|
"husky": "8.0.3",
|
|
|
|
"lint-staged": "13.1.0",
|
|
|
|
"markdownlint-cli2": "0.6.0",
|
|
|
|
"markdownlint-rule-relative-links": "1.1.1",
|
2022-03-16 11:38:20 +01:00
|
|
|
"pinst": "3.0.0",
|
2023-01-10 13:27:35 +01:00
|
|
|
"prettier": "2.8.2",
|
|
|
|
"semantic-release": "20.0.2",
|
|
|
|
"tap": "16.3.3",
|
|
|
|
"typescript": "4.9.4"
|
2022-02-19 16:05:21 +01:00
|
|
|
}
|
|
|
|
}
|