eslint-config/package.json

44 lines
1.1 KiB
JSON
Raw Normal View History

2022-08-26 18:31:31 +02:00
{
"name": "@walidoux/eslint-config",
"version": "1.0.6",
2022-08-26 18:31:31 +02:00
"description": "Walidoux's Eslint config.",
2023-07-26 21:49:14 +02:00
"author": "Walidoux",
2022-08-26 18:31:31 +02:00
"license": "MIT",
"files": [
".eslintrc.json"
],
"main": ".eslintrc.json",
2022-08-26 18:31:31 +02:00
"repository": {
"type": "git",
"url": "https://github.com/walidoux/eslint-config"
},
"homepage": "https://github.com/walidoux/eslint-config/#readme",
"keywords": [
"eslint",
"conventions",
"config"
],
"scripts": {
"lint:eslint": "eslint '**/*.js' --fix",
"lint:prettier": "prettier '**/*.{js,json,md,yml}' --ignore-path .eslintignore --write --loglevel silent",
2023-07-26 21:49:14 +02:00
"release": "npm publish"
2022-08-26 18:31:31 +02:00
},
"dependencies": {
2023-07-26 22:13:28 +02:00
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"eslint": "^8.45.0",
2023-07-26 21:49:14 +02:00
"eslint-config-conventions": "^11.0.1",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "2.27.5",
2023-07-26 21:49:14 +02:00
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-unicorn": "^48.0.1"
2022-08-26 18:31:31 +02:00
},
"devDependencies": {
"typescript": "^5.1.6"
2022-08-26 18:31:31 +02:00
},
"publishConfig": {
"access": "public"
}
}