2022-08-26 16:23:55 +02:00
|
|
|
{
|
|
|
|
"name": "@walidoux/prettier-config",
|
|
|
|
"version": "1.0.0",
|
|
|
|
"description": "Walidoux's Prettier config.",
|
|
|
|
"author": "Walid Korchi",
|
|
|
|
"license": "MIT",
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/walidoux/prettier-config"
|
|
|
|
},
|
|
|
|
"homepage": "https://github.com/walidoux/prettier-config/#readme",
|
|
|
|
"bugs": {
|
|
|
|
"email": "contact@walidkorchi.com",
|
|
|
|
"url": "https://github.com/Walidoux/prettier-config/issues"
|
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"prettier",
|
|
|
|
"config"
|
|
|
|
],
|
|
|
|
"files": [
|
|
|
|
"index.js"
|
|
|
|
],
|
|
|
|
"main": "index.js",
|
|
|
|
"prettier": "./index.js",
|
|
|
|
"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",
|
2022-08-26 16:37:26 +02:00
|
|
|
"lint-all": "npm-run-all lint:*",
|
|
|
|
"release": "npm login && npm publish"
|
2022-08-26 16:23:55 +02:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-12-29 01:41:53 +01:00
|
|
|
"eslint": "^8.30.0",
|
2022-08-26 16:23:55 +02:00
|
|
|
"eslint-config-prettier": "^8.5.0",
|
|
|
|
"eslint-plugin-prettier": "^4.2.1",
|
2022-12-29 01:41:53 +01:00
|
|
|
"husky": "8.0.2",
|
2022-08-26 16:23:55 +02:00
|
|
|
"nano-staged": "^0.8.0",
|
2022-12-29 01:41:53 +01:00
|
|
|
"np": "^7.6.3",
|
2022-08-26 16:23:55 +02:00
|
|
|
"npm-run-all": "^4.1.5",
|
2022-12-29 01:41:53 +01:00
|
|
|
"prettier": "^2.8.1"
|
2022-08-26 16:23:55 +02:00
|
|
|
},
|
|
|
|
"peerDependencies": {
|
2022-12-29 01:41:53 +01:00
|
|
|
"prettier": ">=2.8.1"
|
2022-08-26 16:45:13 +02:00
|
|
|
},
|
|
|
|
"publishConfig": {
|
|
|
|
"access": "public"
|
2022-08-26 16:23:55 +02:00
|
|
|
}
|
|
|
|
}
|