-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.63 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "eslint-plugin-react-form-fields",
"version": "1.2.22",
"description": "React Form Fields specific linting rules for ESLint",
"engines": {
"node": ">=8.10.0"
},
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"prepare": "husky install",
"clean": "rimraf dist",
"prebuild": "npm run clean",
"build": "tsc",
"lint": "run-s lint:ts lint:eslint lint:prettier",
"lint:ts": "tsc --noEmit",
"lint:eslint": "eslint '**/*.{js,ts}'",
"lint:prettier": "prettier '**/*.{js,ts,json,yaml,md}'",
"fix": "run-s fix:eslint fix:prettier",
"fix:eslint": "npm run lint:eslint -- --fix",
"fix:prettier": "npm run lint:prettier -- --write",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"commit": "commit",
"add-rule": "ts-node scripts/add-rule",
"update": "ts-node scripts/update",
"semantic-release": "semantic-release"
},
"peerDependencies": {
"eslint": ">=5.16.0"
},
"dependencies": {
"@typescript-eslint/experimental-utils": "^5.59.9",
"jsx-ast-utils": "^3.3.3"
},
"devDependencies": {
"@commitlint/cli": "^17.5.1",
"@commitlint/config-conventional": "^17.4.4",
"@commitlint/prompt-cli": "^17.5.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/eslint": "^8.37.0",
"@types/jest": "^27.5.0",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.59.9",
"all-contributors-cli": "^6.24.0",
"camelcase": "^7.0.1",
"eslint": "^8.37.0",
"husky": "^8.0.3",
"jest": "^26.6.3",
"lint-staged": "^13.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.7",
"rimraf": "^4.4.1",
"semantic-release": "^21.0.1",
"ts-jest": "^26.5.6",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix",
"prettier --write"
],
"*.{json,yaml,md}": [
"prettier --write"
]
},
"repository": {
"type": "git",
"url": "https://github.com/kotarella1110/eslint-plugin-react-form-fields.git"
},
"keywords": [
"typescript",
"template",
"eslint",
"eslint-plugin",
"react",
"form",
"react-form",
"react-form-fields"
],
"author": "Kotaro Sugawara <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/kotarella1110/eslint-plugin-react-form-fields/issues"
},
"homepage": "https://github.com/kotarella1110/eslint-plugin-react-form-fields#readme"
}