mirror of
https://github.com/theoludwig/eslint-config-conventions.git
synced 2024-11-08 19:11:31 +01:00
71 lines
2.1 KiB
JSON
71 lines
2.1 KiB
JSON
{
|
|
"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\"",
|
|
"lint:prettier": "prettier \".\" --check --ignore-path \".gitignore\"",
|
|
"lint:staged": "lint-staged",
|
|
"test": "tape \"test/**/*.js\"",
|
|
"release": "semantic-release",
|
|
"postinstall": "husky install",
|
|
"prepublishOnly": "pinst --disable",
|
|
"postpublish": "pinst --enable"
|
|
},
|
|
"peerDependencies": {
|
|
"eslint": "^8.9.0",
|
|
"eslint-plugin-import": "^2.25.4",
|
|
"eslint-plugin-promise": "^6.0.0",
|
|
"eslint-plugin-unicorn": "^41.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@commitlint/cli": "16.2.3",
|
|
"@commitlint/config-conventional": "16.2.1",
|
|
"editorconfig-checker": "4.0.2",
|
|
"eslint": "8.11.0",
|
|
"@types/eslint": "8.4.1",
|
|
"eslint-plugin-import": "2.25.4",
|
|
"eslint-plugin-promise": "6.0.0",
|
|
"eslint-plugin-unicorn": "41.0.1",
|
|
"typescript": "4.6.2",
|
|
"@typescript-eslint/parser": "5.15.0",
|
|
"@typescript-eslint/eslint-plugin": "5.15.0",
|
|
"tape": "5.5.2",
|
|
"husky": "7.0.4",
|
|
"lint-staged": "12.3.7",
|
|
"markdownlint-cli": "0.31.1",
|
|
"@types/tape": "4.13.2",
|
|
"pinst": "3.0.0",
|
|
"prettier": "2.6.0",
|
|
"semantic-release": "19.0.2"
|
|
}
|
|
}
|