75 lines
1.9 KiB
JSON
75 lines
1.9 KiB
JSON
{
|
|
"name": "@walidoux/eslint-config",
|
|
"version": "1.0.3",
|
|
"description": "Walidoux's Eslint config.",
|
|
"author": "Walid Korchi",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/walidoux/eslint-config"
|
|
},
|
|
"homepage": "https://github.com/walidoux/eslint-config/#readme",
|
|
"bugs": {
|
|
"email": "contact@walidkorchi.com",
|
|
"url": "https://github.com/Walidoux/eslint-config/issues"
|
|
},
|
|
"keywords": [
|
|
"eslint",
|
|
"conventions",
|
|
"config"
|
|
],
|
|
"files": [
|
|
"index.js"
|
|
],
|
|
"main": "index.js",
|
|
"prettier": "@walidoux/prettier-config",
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "nano-staged"
|
|
}
|
|
},
|
|
"nano-staged": {
|
|
"**/*.js": [
|
|
"eslint --fix",
|
|
"prettier --ignore-path .eslintignore --write"
|
|
],
|
|
"**/*.{json,md,yml}": [
|
|
"prettier --ignore-path .eslintignore --write"
|
|
]
|
|
},
|
|
"scripts": {
|
|
"lint:eslint": "eslint '**/*.js' --fix",
|
|
"lint:prettier": "prettier '**/*.{js,json,md,yml}' --ignore-path .eslintignore --write --loglevel silent",
|
|
"lint-all": "npm-run-all lint:*",
|
|
"release": "npm login && npm publish"
|
|
},
|
|
"dependencies": {
|
|
"@typescript-eslint/eslint-plugin": "^5.52.0",
|
|
"@typescript-eslint/parser": "^5.52.0",
|
|
"eslint-config-conventions": "^7.0.0",
|
|
"eslint-config-prettier": "^8.6.0",
|
|
"eslint-import-resolver-typescript": "^3.5.3",
|
|
"eslint-plugin-import": "^2.27.5",
|
|
"eslint-plugin-prettier": "^4.2.1",
|
|
"eslint-plugin-promise": "^6.1.1",
|
|
"eslint-plugin-unicorn": "^45.0.2"
|
|
},
|
|
"devDependencies": {
|
|
"@walidoux/prettier-config": "^1.0.2",
|
|
"eslint": "^8.34.0",
|
|
"husky": "8.0.3",
|
|
"nano-staged": "^0.8.0",
|
|
"np": "^7.6.3",
|
|
"npm-run-all": "^4.1.5",
|
|
"prettier": "^2.8.4",
|
|
"typescript": "^4.9.5"
|
|
},
|
|
"peerDependencies": {
|
|
"eslint": ">=8.34.0",
|
|
"prettier": ">=2.8.4"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
}
|
|
}
|