forked from gabrieldonadel/rn-material-ui-textfield
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.6 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
{
"name": "rn-material-ui-textfield",
"version": "1.0.6",
"license": "BSD-3-Clause",
"contributors": [
"Gabriel Donadel Dall'Agnol <[email protected]>",
"Alexander Nazarov <[email protected]>"
],
"description": "Material UI textfield",
"scripts": {
"test": "eslint index.js src && jest --silent",
"lint": "eslint index.js src example/app.js",
"jest": "jest"
},
"keywords": [
"react",
"react-component",
"react-native",
"ios",
"android",
"material",
"material-ui",
"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/gabrieldonadel/rn-material-ui-textfield.git"
},
"dependencies": {
"prop-types": "^15.5.9"
},
"peerDependencies": {
"react": ">=16.3.0",
"react-native": ">=0.55.0"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/runtime": "^7.5.5",
"@react-native-community/eslint-config": "^2.0.0",
"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",
"eslint-plugin-react-perf": "^3.3.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"
},
"jest": {
"preset": "react-native",
"modulePathIgnorePatterns": [
"<rootDir>/example"
]
}
}