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"
|
|
|
|
],
|
2023-05-13 15:41:12 +02:00
|
|
|
"publishConfig": {
|
|
|
|
"access": "public",
|
|
|
|
"provenance": true
|
|
|
|
},
|
2022-02-19 16:05:21 +01:00
|
|
|
"engines": {
|
|
|
|
"node": ">=16.0.0",
|
2023-05-13 15:41:12 +02:00
|
|
|
"npm": ">=9.0.0"
|
2022-02-19 16:05:21 +01:00
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"lint:commit": "commitlint",
|
|
|
|
"lint:editorconfig": "editorconfig-checker",
|
2022-08-31 13:17:00 +02:00
|
|
|
"lint:markdown": "markdownlint-cli2",
|
2023-04-02 21:16:48 +02:00
|
|
|
"lint:eslint": "eslint \".\" -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": {
|
2023-02-06 23:33:28 +01:00
|
|
|
"eslint": "^8.33.0",
|
|
|
|
"eslint-plugin-import": "^2.27.5",
|
|
|
|
"eslint-plugin-promise": "^6.1.1",
|
2023-05-13 15:22:49 +02:00
|
|
|
"eslint-plugin-unicorn": "^47.0.0"
|
2022-02-19 16:05:21 +01:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-05-13 15:22:49 +02:00
|
|
|
"@commitlint/cli": "17.6.3",
|
|
|
|
"@commitlint/config-conventional": "17.6.3",
|
|
|
|
"@tsconfig/strictest": "2.0.1",
|
2023-04-02 20:53:26 +02:00
|
|
|
"@types/eslint": "8.37.0",
|
2023-02-06 23:33:28 +01:00
|
|
|
"@types/tap": "15.0.8",
|
2023-05-13 15:22:49 +02:00
|
|
|
"@typescript-eslint/eslint-plugin": "5.59.5",
|
|
|
|
"@typescript-eslint/parser": "5.59.5",
|
2023-02-06 23:33:28 +01:00
|
|
|
"editorconfig-checker": "5.0.1",
|
2023-05-13 15:22:49 +02:00
|
|
|
"eslint": "8.40.0",
|
2023-02-06 23:33:28 +01:00
|
|
|
"eslint-plugin-import": "2.27.5",
|
2022-11-21 09:08:19 +01:00
|
|
|
"eslint-plugin-promise": "6.1.1",
|
2023-05-13 15:22:49 +02:00
|
|
|
"eslint-plugin-unicorn": "47.0.0",
|
2023-01-10 13:27:35 +01:00
|
|
|
"husky": "8.0.3",
|
2023-05-13 15:22:49 +02:00
|
|
|
"lint-staged": "13.2.2",
|
|
|
|
"markdownlint-cli2": "0.7.1",
|
2023-04-02 21:16:48 +02:00
|
|
|
"markdownlint-rule-relative-links": "1.1.2",
|
2022-03-16 11:38:20 +01:00
|
|
|
"pinst": "3.0.0",
|
2023-05-13 15:22:49 +02:00
|
|
|
"prettier": "2.8.8",
|
|
|
|
"semantic-release": "21.0.2",
|
2023-02-06 23:33:28 +01:00
|
|
|
"tap": "16.3.4",
|
2023-05-13 15:22:49 +02:00
|
|
|
"typescript": "5.0.4"
|
2022-02-19 16:05:21 +01:00
|
|
|
}
|
|
|
|
}
|