-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
38 lines (38 loc) · 1.08 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"name": "eslint-plugin-react-component-name",
"private": true,
"version": "0.0.4",
"type": "module",
"description": "Eslint plugin for converting decorated anonymous functions to named functions.",
"exports": "./src/index.ts",
"scripts": {
"publish": "tsc && vitest run && smartbundle && cd dist && npm publish --access=public",
"test": "vitest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/artalar/eslint-plugin-react-component-name.git"
},
"keywords": [
"react",
"eslint",
"react-eslint"
],
"author": "artalar",
"license": "MIT",
"bugs": {
"url": "https://github.com/artalar/eslint-plugin-react-component-name/issues"
},
"homepage": "https://github.com/artalar/eslint-plugin-react-component-name#readme",
"dependencies": {
"@types/eslint": "^8.56.12"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@typescript-eslint/rule-tester": "^7.18.0",
"eslint": "^8.57.1",
"smartbundle": "^0.12.1",
"vitest": "^2.1.8"
}
}