-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.39 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.39 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
{
"name": "eslint-plugin-react-native-enforce-props",
"version": "0.0.1",
"description": "Enforce a specific set of props on specific elements",
"main": "dist/index.js",
"exports": "./dist/index.js",
"scripts": {
"test": "jest",
"build": "tsup src/index.ts",
"lint": "eslint .",
"update:eslint-docs": "npm run build && eslint-doc-generator"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Flomm/eslint-plugin-react-native-enforce-props.git"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"eslint",
"plugin",
"props",
"react-native"
],
"author": "Flomm",
"license": "MIT",
"bugs": {
"url": "https://github.com/Flomm/eslint-plugin-react-native-enforce-props/issues"
},
"homepage": "https://github.com/Flomm/eslint-plugin-react-native-enforce-props#readme",
"devDependencies": {
"@eslint/js": "9.39.2",
"@types/eslint": "9.6.1",
"@types/jest": "30.0.0",
"@types/node": "25.2.0",
"@typescript-eslint/eslint-plugin": "8.54.0",
"@typescript-eslint/rule-tester": "8.54.0",
"@typescript-eslint/types": "8.54.0",
"@typescript-eslint/utils": "8.54.0",
"eslint-doc-generator": "3.0.2",
"jest": "30.2.0",
"prettier": "3.8.1",
"ts-jest": "29.4.6",
"ts-node": "10.9.2",
"tsup": "8.5.1",
"typescript": "5.9.3"
},
"dependencies": {
"eslint": "^9.39.2"
}
}