-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.49 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
{
"name": "react-native-next-input",
"version": "0.10.8",
"main": "lib/index.js",
"types": "lib",
"scripts": {
"build": "npm run prettier:write && tsc -p .",
"prettier:base": "prettier --parser typescript --single-quote",
"prettier:check": "npm run prettier:base -- --list-different \"src/**/*.tsx\"",
"prettier:write": "npm run prettier:base -- --write \"src/**/*.tsx\""
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.tsx": [
"npm run prettier:write",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/blendtale/react-native-next-input.git"
},
"author": "Rohit Bhatia <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/blendtale/react-native-next-input/issues"
},
"homepage": "https://github.com/blendtale/react-native-next-input#readme",
"description": "React-native component which will automatically change focus to next input element making it great to use when making OTP screens, pin based login screens or even date of birth component",
"keywords": [
"react",
"native",
"keyboard",
"textInput",
"OTP",
"Date Of birth",
"DOB",
"next-input",
"date"
],
"devDependencies": {
"@types/react-native": "^0.64.0",
"typescript": "^4.1.3",
"husky": "^6.0.0",
"lint-staged": "^11.1.2",
"prettier": "^2.0.5"
},
"peerDependencies": {
"react-native": "^0.63.4"
}
}