-
Notifications
You must be signed in to change notification settings - Fork 122
/
Copy pathpackage.json
49 lines (49 loc) · 1.22 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
{
"name": "react-native-localization",
"version": "2.3.2",
"description": "Simple module to localize the ReactNative interface",
"main": "./lib/LocalizedStrings.js",
"types": "./lib/LocalizedStrings.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "babel src --out-dir lib"
},
"repository": {
"type": "git",
"url": "https://github.com/stefalda/ReactNativeLocalization.git"
},
"keywords": [
"localization",
"internationalization",
"javascript",
"typescript",
"ios",
"android",
"react",
"react-native",
"react-component"
],
"author": "Stefano Falda <[email protected]> (http://www.babisoft.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/stefalda/ReactNativeLocalization/issues"
},
"homepage": "https://github.com/stefalda/ReactNativeLocalization",
"dependencies": {
"react-localization": "^1.0.17"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1"
},
"peerDependencies": {
"react-native": ">0.64",
"react-native-windows": ">0.64",
"react": ">15.6.0"
},
"peerDependenciesMeta": {
"react-native-windows": {
"optional": true
}
}
}