forked from tttstudios/react-native-otp-input
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.69 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.69 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
{
"name": "@chakrahq/react-native-otp-input",
"version": "1.3.15",
"description": "is a tiny JS library for one time passcode (OTP). Supports smart input suggestion on iOS and code autofill on Android (it will be filled when you press the copy button on the SMS notification bar)",
"main": "./dist/index.js",
"types": "./index.d.ts",
"files": [
"dist",
"index.d.ts"
],
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest",
"build": "tsc"
},
"jest": {
"preset": "react-native",
"setupFilesAfterEnv": [
"<rootDir>setup-tests.js"
],
"testEnvironment": "enzyme",
"testEnvironmentOptions": {
"enzymeAdapter": "react16"
},
"testMatch": [
"<rootDir>/__tests__/*.test.js"
],
"transform": {
"^.+\\.jsx$": "babel-jest"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/chakrahq/react-native-otp-input.git"
},
"keywords": [
"react-native",
"otp",
"otc",
"one time password",
"one time pin",
"one time pincode",
"one time code",
"sms",
"verifcation code",
"phone",
"verification"
],
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.8.4",
"@types/jest": "^29.5.14",
"@types/react": "^18.3.18",
"babel-jest": "^29.7.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"jest": "^29.7.0",
"jest-environment-enzyme": "^7.1.2",
"jest-enzyme": "^7.1.2",
"jsdom": "^25.0.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-native": "^0.76.5",
"typescript": "^5.7.2"
},
"dependencies": {
"@react-native-clipboard/clipboard": "^1.14.1"
}
}