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"
|
|
|
|
],
|
|
|
|
"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-07-02 15:54:50 +02:00
|
|
|
"lint:eslint": "eslint . -c eslintrc.json",
|
2023-07-14 23:19:09 +02:00
|
|
|
"lint:prettier": "prettier . --check",
|
2022-02-19 16:05:21 +01:00
|
|
|
"lint:staged": "lint-staged",
|
2023-07-02 15:54:50 +02:00
|
|
|
"test": "node --test test/",
|
2022-02-19 16:05:21 +01:00
|
|
|
"release": "semantic-release",
|
|
|
|
"postinstall": "husky install",
|
|
|
|
"prepublishOnly": "pinst --disable",
|
|
|
|
"postpublish": "pinst --enable"
|
|
|
|
},
|
|
|
|
"peerDependencies": {
|
2023-07-02 15:54:50 +02:00
|
|
|
"eslint": "^8.44.0",
|
2023-02-06 23:33:28 +01:00
|
|
|
"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-07-02 15:54:50 +02:00
|
|
|
"@commitlint/cli": "17.6.6",
|
|
|
|
"@commitlint/config-conventional": "17.6.6",
|
2023-05-13 15:22:49 +02:00
|
|
|
"@tsconfig/strictest": "2.0.1",
|
2023-07-14 23:19:09 +02:00
|
|
|
"@types/eslint": "8.44.0",
|
|
|
|
"@types/node": "20.4.2",
|
|
|
|
"@typescript-eslint/eslint-plugin": "6.0.0",
|
|
|
|
"@typescript-eslint/parser": "6.0.0",
|
2023-07-02 15:54:50 +02:00
|
|
|
"editorconfig-checker": "5.1.1",
|
2023-07-14 23:19:09 +02:00
|
|
|
"eslint": "8.45.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-07-02 15:54:50 +02:00
|
|
|
"lint-staged": "13.2.3",
|
|
|
|
"markdownlint-cli2": "0.8.1",
|
|
|
|
"markdownlint-rule-relative-links": "2.1.0",
|
2022-03-16 11:38:20 +01:00
|
|
|
"pinst": "3.0.0",
|
2023-07-14 23:19:09 +02:00
|
|
|
"prettier": "3.0.0",
|
|
|
|
"semantic-release": "21.0.7",
|
|
|
|
"typescript": "5.1.6"
|
2022-02-19 16:05:21 +01:00
|
|
|
}
|
|
|
|
}
|