mirror of
https://github.com/theoludwig/eslint-config-conventions.git
synced 2025-09-11 23:09:27 +02:00
chore: initial commit
This commit is contained in:
72
package.json
Normal file
72
package.json
Normal file
@@ -0,0 +1,72 @@
|
||||
{
|
||||
"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}\"",
|
||||
"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",
|
||||
"typescript": "^4.4.0",
|
||||
"@typescript-eslint/eslint-plugin": "^5.12.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@commitlint/cli": "16.2.1",
|
||||
"@commitlint/config-conventional": "16.2.1",
|
||||
"editorconfig-checker": "4.0.2",
|
||||
"eslint": "8.9.0",
|
||||
"@types/eslint": "8.4.1",
|
||||
"eslint-plugin-import": "2.25.4",
|
||||
"eslint-plugin-promise": "6.0.0",
|
||||
"eslint-plugin-unicorn": "41.0.0",
|
||||
"typescript": "4.5.5",
|
||||
"@typescript-eslint/parser": "5.12.0",
|
||||
"@typescript-eslint/eslint-plugin": "5.12.0",
|
||||
"tape": "5.5.2",
|
||||
"husky": "7.0.4",
|
||||
"lint-staged": "12.3.4",
|
||||
"markdownlint-cli": "0.31.1",
|
||||
"@types/tape": "4.13.2",
|
||||
"pinst": "2.1.6",
|
||||
"prettier": "2.5.1",
|
||||
"semantic-release": "19.0.2"
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user