Files

97 lines
2.4 KiB
JSON

{
"name": "eslint-plugin-storybook",
"version": "0.5.7",
"description": "Best practice rules for Storybook",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"storybook"
],
"author": "yannbf@gmail.com",
"contributors": [
{
"name": "Rafael Rozon",
"email": "rafaelrozon.developer@gmail.com"
}
],
"main": "dist/index.js",
"files": [
"dist/**/*",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/storybookjs/eslint-plugin-storybook"
},
"homepage": "https://github.com/storybookjs/eslint-plugin-storybook#readme",
"bugs": {
"url": "https://github.com/storybookjs/eslint-plugin-storybook/issues"
},
"scripts": {
"lint": "eslint --fix .",
"migrate": "ts-migrate-full",
"prebuild": "rimraf dist",
"build": "tsc",
"start": "tsc --watch",
"test": "jest",
"test:ci": "jest --ci",
"generate-rule": "ts-node ./tools/generate-rule",
"update-configs": "ts-node ./tools/update-configs",
"update-docs": "ts-node ./tools/update-rules-list",
"update-all": "yarn update-configs && yarn update-docs",
"prepare": "husky install",
"prettier": "prettier --write .",
"release": "yarn build && auto shipit"
},
"dependencies": {
"@storybook/csf": "^0.0.1",
"@typescript-eslint/experimental-utils": "^5.3.0",
"requireindex": "^1.1.0"
},
"devDependencies": {
"@auto-it/released": "^10.32.2",
"@types/eslint": "^7.28.2",
"@types/jest": "^27.0.2",
"@types/node": "^16.11.6",
"@typescript-eslint/parser": "^5.3.0",
"auto": "^10.32.2",
"eslint": "^7.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-eslint-plugin": "^3.2.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": ">=6",
"jest": "^27.3.1",
"lint-staged": ">=10",
"prettier": "^2.4.0",
"prompts": "^2.4.2",
"rimraf": "^3.0.2",
"ts-dedent": "^2.2.0",
"ts-jest": "^27.0.7",
"ts-migrate": "^0.1.26",
"ts-node": "^10.4.0",
"typescript": "^4.4.4"
},
"engines": {
"node": "12.x || 14.x || >= 16"
},
"peerDependencies": {
"eslint": ">=6"
},
"license": "MIT",
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
},
"publishConfig": {
"access": "public"
},
"auto": {
"plugins": [
"npm",
"released"
]
}
}