-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
62 lines (62 loc) · 1.56 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
{
"name": "react-native-otp-entry",
"version": "1.7.3",
"description": "A fully modifiable OTP Input Component for React Native",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"!dist/src/**/__tests__"
],
"repository": "git@github.com:anday2000/react-native-otp-entry.git",
"scripts": {
"test": "jest .",
"ts:check": "tsc --noEmit",
"test:watch": "jest --watch",
"test:coverage": "jest --collectCoverage --coverageDirectory=\"./coverage\"",
"build:dev": "tsc",
"build:prod": "tsc -p tsconfig.prod.json",
"prepublishOnly": "npm install && npm run test && npm run ts:check && npm run build:prod",
"prepare": "npm run build:prod"
},
"keywords": [
"react-native",
"react native",
"react-native-app",
"react-native-component",
"react-native-input",
"react-native-otp",
"react-native-otp-verify",
"react-native-otp-input",
"react-native-otp-entry",
"react-native-otp-text-input",
"rn",
"anday",
"anday013",
"anday2000",
"otp",
"react",
"otp",
"input",
"rn",
"otp",
"entry"
],
"author": "anday013 <anday.ismayilzada@gmail.com>",
"license": "MIT",
"devDependencies": {
"@testing-library/jest-native": "^5.4.3",
"@testing-library/react-native": "^12.3.0",
"@types/jest": "^29.5.4",
"@types/react": "^18.2.12",
"jest": "^29.7.0",
"prettier": "^3.0.2",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
}
}