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

71 lines
2.1 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.",
"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",
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0"
},
"scripts": {
"lint:commit": "commitlint",
"lint:editorconfig": "editorconfig-checker",
"lint:markdown": "markdownlint \"**/*.md\" --dot --ignore-path \".gitignore\"",
"lint:javascript": "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",
"eslint-plugin-import": "^2.26.0",
2022-02-19 16:05:21 +01:00
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-unicorn": "^42.0.0"
2022-02-19 16:05:21 +01:00
},
"devDependencies": {
2022-03-16 11:38:20 +01:00
"@commitlint/cli": "16.2.3",
2022-02-19 16:05:21 +01:00
"@commitlint/config-conventional": "16.2.1",
2022-03-19 14:28:00 +01:00
"@types/eslint": "8.4.1",
"@types/tap": "15.0.6",
"@typescript-eslint/eslint-plugin": "5.18.0",
"@typescript-eslint/parser": "5.18.0",
2022-02-19 16:05:21 +01:00
"editorconfig-checker": "4.0.2",
"eslint": "8.12.0",
"eslint-plugin-import": "2.26.0",
2022-02-19 16:05:21 +01:00
"eslint-plugin-promise": "6.0.0",
"eslint-plugin-unicorn": "42.0.0",
2022-02-19 16:05:21 +01:00
"husky": "7.0.4",
2022-03-19 14:07:42 +01:00
"lint-staged": "12.3.7",
2022-02-19 16:05:21 +01:00
"markdownlint-cli": "0.31.1",
2022-03-16 11:38:20 +01:00
"pinst": "3.0.0",
"prettier": "2.6.2",
2022-03-19 14:28:00 +01:00
"semantic-release": "19.0.2",
"tap": "16.0.1",
"typescript": "4.6.3"
2022-02-19 16:05:21 +01:00
}
}