1
1
mirror of https://github.com/theoludwig/eslint-config-conventions.git synced 2024-09-19 01:25:53 +02:00
eslint-config-conventions/package.json

80 lines
2.2 KiB
JSON
Raw Normal View History

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",
"files": [
"index.js",
".eslintrc.json"
],
"publishConfig": {
"access": "public",
"provenance": true
},
2022-02-19 16:05:21 +01:00
"engines": {
"node": ">=18.0.0",
"npm": ">=10.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-18 20:25:19 +02:00
"lint:eslint": "eslint . --max-warnings 0 --report-unused-disable-directives --config eslintrc.json",
"lint:prettier": "prettier . --check",
2022-02-19 16:05:21 +01:00
"lint:staged": "lint-staged",
"test": "node --test",
2022-02-19 16:05:21 +01:00
"release": "semantic-release",
2024-01-30 01:32:52 +01:00
"postinstall": "husky",
2022-02-19 16:05:21 +01:00
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"peerDependencies": {
"eslint": "^8.56.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-unicorn": "^51.0.1"
2022-02-19 16:05:21 +01:00
},
"devDependencies": {
2024-01-30 01:32:52 +01:00
"@commitlint/cli": "18.6.0",
"@commitlint/config-conventional": "18.6.0",
"@tsconfig/strictest": "2.0.2",
2024-01-30 01:32:52 +01:00
"@types/eslint": "8.56.2",
"@types/node": "20.11.17",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"editorconfig-checker": "5.1.3",
"eslint": "8.56.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-unicorn": "51.0.1",
"husky": "9.0.10",
"lint-staged": "15.2.2",
2024-01-30 01:32:52 +01:00
"markdownlint-cli2": "0.12.1",
"markdownlint-rule-relative-links": "2.3.1",
2022-03-16 11:38:20 +01:00
"pinst": "3.0.0",
"prettier": "3.2.5",
"semantic-release": "23.0.2",
"typescript": "5.3.3"
2022-02-19 16:05:21 +01:00
}
}