-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 957 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 957 Bytes
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
{
"name": "react-native-culture-text",
"version": "1.0.0",
"description": "A higher order component of <Text/> to provide i18n features in a react-friendly way",
"main": "index.js",
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/line64/react-native-culture-text.git"
},
"keywords": [
"react",
"react-native",
"component",
"i18n",
"l10n"
],
"author": "Line64",
"license": "MIT",
"bugs": {
"url": "https://github.com/line64/react-native-culture-text/issues"
},
"homepage": "https://github.com/line64/react-native-culture-text#readme",
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"devDependencies": {
"jest": "^22.3.0",
"react": "16.2.0",
"react-native": "0.53.0",
"react-test-renderer": "^16.2.0"
},
"jest": {
"preset": "react-native"
},
"dependencies": {
"prop-types": "^15.6.0"
}
}