forked from n4kz/react-native-material-textfield
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (53 loc) · 1.17 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
{
"name": "react-native-material-textfield",
"version": "0.12.0",
"license": "BSD-3-Clause",
"author": "Alexander Nazarov <[email protected]>",
"description": "Material textfield",
"keywords": [
"react",
"react-component",
"react-native",
"ios",
"android",
"material",
"input",
"textinput",
"field",
"textfield",
"floating",
"label"
],
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/n4kz/react-native-material-textfield.git"
},
"dependencies": {
"prop-types": "^15.5.9"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"devDependencies": {
"babel-eslint": "^8.0.0",
"babel-jest": "^22.0.0",
"babel-preset-react-native": "4.0.0",
"eslint": "^4.6.0",
"eslint-plugin-react": "^7.0.0",
"jest": "^22.0.0",
"react": "16.2.0",
"react-native": "0.52.0",
"react-test-renderer": "16.2.0"
},
"scripts": {
"test": "npm run lint && npm run jest -- --silent",
"lint": "eslint src example/app.js",
"jest": "jest"
},
"jest": {
"preset": "react-native",
"modulePathIgnorePatterns": ["<rootDir>/example"]
}
}