forked from n4kz/react-native-material-textfield
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
72 lines (72 loc) · 1.66 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
{
"name": "react-native-material-textfield-plus",
"version": "0.17.0",
"license": "BSD-3-Clause",
"author": "Alexander Nazarov <n4kz@n4kz.com>",
"description": "React Native Material Textfield",
"keywords": [
"react",
"react-component",
"react-native",
"ios",
"android",
"material",
"input",
"textinput",
"field",
"textfield",
"floating",
"label"
],
"main": "index.js",
"files": [
"index.js",
"src/*",
"license.txt",
"readme.md",
"changelog.md"
],
"repository": {
"type": "git",
"url": "git://github.com/elmotan95/react-native-material-textfield.git"
},
"dependencies": {
"prop-types": "^15.7.2"
},
"peerDependencies": {
"react": ">=16.3.0",
"react-native": ">=0.55.0"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/runtime": "^7.5.5",
"babel-eslint": "^10.0.0",
"babel-jest": "^24.9.0",
"eslint": "^6.5.0",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-native": "^3.7.0",
"jest": "^24.9.0",
"metro-react-native-babel-preset": "^0.56.0",
"react": "16.10.2",
"react-native": "0.61.2",
"react-test-renderer": "16.10.2"
},
"scripts": {
"test": "eslint index.js src && jest --silent",
"lint": "eslint index.js src example/app.js",
"jest": "jest"
},
"jest": {
"preset": "react-native",
"modulePathIgnorePatterns": [
"<rootDir>/example"
]
},
"bugs": {
"url": "https://github.com/elmotan95/react-native-material-textfield/issues"
},
"homepage": "https://github.com/elmotan95/react-native-material-textfield#readme",
"directories": {
"example": "example"
}
}