-
Notifications
You must be signed in to change notification settings - Fork 242
/
package.json
75 lines (75 loc) · 1.94 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
{
"name": "@twotalltotems/react-native-otp-input",
"version": "1.3.11",
"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/Twotalltotems/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"
],
"author": "TTT Studio (https://ttt.studio)",
"contributors": [
"Becky Wu <[email protected]> (https://github.com/BeckyWu220)",
"Felipe Peña <[email protected]> (http://felipe.penya.cl)"
],
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.8.4",
"@types/jest": "^25.1.4",
"@types/react": "^16.9.25",
"@types/react-native": "^0.61.23",
"babel-jest": "^25.1.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"jest": "^25.1.0",
"jest-environment-enzyme": "^7.1.2",
"jest-enzyme": "^7.1.2",
"jsdom": "^16.1.0",
"react": "16",
"react-dom": "^16.12.0",
"react-native": "^0.61.5",
"typescript": "^3.8.3"
},
"dependencies": {
"@react-native-community/clipboard": "^1.2.2"
}
}