forked from retyui/react-native-confirmation-code-field
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.36 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
{
"name": "react-native-confirmation-code-field",
"version": "7.4.0",
"main": "esm/index.js",
"types": "esm/index.d.ts",
"files": [
"esm",
"!__tests__"
],
"scripts": {
"ci": "yarn lint && yarn test && yarn size",
"presize": "yarn build",
"size": "size-limit",
"test": "jest --coverage",
"lint": "eslint './src/*.{js,ts,tsx}' --quiet",
"ts": "tsc --noEmit",
"build": "rm -rf esm && tsc --outDir esm",
"postbuild": "prettier --write esm/*.js esm/*.d.ts",
"docs": "yarn doctoc API.md",
"prepublishOnly": "yarn docs && yarn build"
},
"peerDependencies": {
"react": ">=16.4.0",
"react-native": ">=0.64.0"
},
"peerDependenciesMeta": {
"react": {
"optional": true
},
"react-native": {
"optional": true
}
},
"resolutions": {
"@types/jest": "^29.5.12",
"@types/react": "^18.2.58"
},
"devDependencies": {
"@size-limit/preset-app": "^11.0.2",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/react-native": "^12.4.3",
"@tsconfig/react-native": "^3.0.3",
"@types/jest": "^29.5.12",
"@types/react": "^18.2.58",
"@types/react-test-renderer": "^18.0.7",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"doctoc": "^2.2.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.33.2",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"react": "^18.2.0",
"react-native": "0.73.4",
"react-native-test-app": "^3.2.11",
"react-test-renderer": "^18.2.0",
"size-limit": "^11.0.2",
"typescript": "^5.3.3"
},
"author": "David <[email protected]>",
"description": "A react-native component to input confirmation code for both Android and IOS",
"homepage": "https://github.com/retyui/react-native-confirmation-code-field#readme",
"bugs": "https://github.com/retyui/react-native-confirmation-code-field/issues",
"repository": {
"type": "git",
"url": "https://github.com/retyui/react-native-confirmation-code-field"
},
"license": "MIT",
"keywords": [
"react",
"react-component",
"react-native",
"react-native-component",
"android",
"ios",
"code-input",
"confirmation-code",
"pin-code",
"confirmation-code-input",
"pin-code-input"
]
}