-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.74 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.74 KB
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
{
"name": "eslint-plugin-react-native-unistyles",
"version": "3.0.7",
"author": "RodSarhan",
"license": "MIT",
"description": "React Native Unistyles rules for ESLint",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"clean": "rimraf dist",
"prebuild": "yarn run clean",
"build": "tsc --project ./tsconfig.build.json",
"lint": "yarn run lint:ts && yarn run lint:eslint && yarn run lint:prettier",
"lint:ts": "tsc --project ./tsconfig.check.json",
"lint:eslint": "eslint '**/*.{js,ts}' --ignore-pattern 'examples/*'",
"lint:prettier": "prettier '**/*.{js,ts,json,yaml,md}'",
"format": "yarn run lint:prettier --write",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"release": "env-cmd -e release -- release-it --config ./release-it.json"
},
"repository": {
"type": "git",
"url": "https://github.com/RodSarhan/eslint-plugin-react-native-unistyles"
},
"homepage": "https://github.com/RodSarhan/eslint-plugin-react-native-unistyles",
"bugs": "https://github.com/RodSarhan/eslint-plugin-react-native-unistyles/issues",
"devDependencies": {
"@eslint/js": "^9.39.1",
"@release-it/conventional-changelog": "^10.0.1",
"@types/eslint": "^9.6.1",
"@types/jest": "^30.0.0",
"@types/node": "^24.9.2",
"@types/react": "^19.2.2",
"@typescript-eslint/parser": "^8.46.3",
"@typescript-eslint/rule-tester": "^8.46.3",
"@typescript-eslint/types": "^8.46.3",
"env-cmd": "^11.0.0",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-doc-generator": "^2.3.0",
"eslint-plugin-eslint-plugin": "^7.2.0",
"eslint-plugin-n": "^17.23.1",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-native": "^5.0.0",
"jest": "^30.2.0",
"prettier": "^3.6.2",
"react-native": "^0.82.1",
"react-native-unistyles": "^3.0.17",
"release-it": "^19.0.5",
"rimraf": "^6.1.0",
"ts-jest": "^29.4.5",
"ts-node": "^10.9.2",
"typescript": "^5.2.2",
"typescript-eslint": "^8.46.3"
},
"peerDependencies": {
"eslint": "^3.17.0 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9"
},
"keywords": [
"eslint",
"eslint-plugin",
"eslintplugin",
"react",
"react-native",
"react native",
"unistyles",
"react-native-unistyles"
],
"dependencies": {
"@typescript-eslint/utils": "^8.46.3"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}