-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.04 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
{
"name": "reactxp-i18n",
"version": "0.0.4",
"description": "Plugin for ReactXP that provides i18n",
"author": "Simone Locci <[email protected]>",
"license": "MIT",
"scripts": {
"build": "npm run tslint && tsc",
"tslint": "tslint --project tsconfig.json -r tslint.json -r ./node_modules/tslint-microsoft-contrib --fix || true"
},
"repository": {
"type": "git",
"url": "https://github.com/pimuzzo/rx-i18n"
},
"keywords": [
"react-native",
"reactxp",
"react",
"i18n",
"internationalization",
"l10n",
"localization",
"translate"
],
"dependencies": {
"@types/react-native": "^0.55.19",
"browser-locale": "^1.0.3",
"i18n-js": "^3.0.8",
"react-native-i18n": "^2.0.12",
"reactxp": "^1.6.1"
},
"peerDependencies": {
"react-dom": "16.2.0",
"react-native": "^0.51.0",
"react-native-windows": "^0.51.0"
},
"devDependencies": {
"tslint": "5.8.0",
"tslint-microsoft-contrib": "5.0.0",
"typescript": "2.7.2"
},
"types": "dist/web/PluginBase.d.ts"
}