-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.46 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
{
"name": "eslint-plugin-reactxp",
"version": "0.2.0",
"description": "ESlint rules for ReactXP",
"keywords": [
"eslint",
"eslint-plugin",
"eslint-plugin-reactxp",
"reactxp"
],
"author": {
"name": "Oleksandr Tarasiuk",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/a-tarasyuk/eslint-plugin-reactxp.git"
},
"bugs": {
"url": "https://github.com/a-tarasyuk/eslint-plugin-reactxp/issues"
},
"main": "dist/index.js",
"scripts": {
"prepare": "npm run build && husky install",
"format": "prettier --write \"./**/*.{ts,md}\"",
"format:check": "prettier --list-different \"./**/*.{ts,md}\"",
"test": "jest --coverage",
"lint": "eslint --config .eslintrc --ext .ts src tests",
"build": "tsc"
},
"devDependencies": {
"@types/eslint": "8.37.0",
"@types/node": "18.15.11",
"@typescript-eslint/eslint-plugin": "5.59.0",
"@typescript-eslint/parser": "5.59.0",
"eslint": "8.38.0",
"husky": "8.0.3",
"jest": "29.5.0",
"prettier": "2.8.7",
"ts-jest": "29.1.0",
"typescript": "5.2.2"
},
"dependencies": {
"@typescript-eslint/utils": "5.59.0"
},
"peerDependencies": {
"@typescript-eslint/parser": "^5.4.0",
"eslint": "^8.3.0"
},
"engines": {
"node": ">=0.10.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run format:check && npm test"
}
},
"license": "MIT"
}