-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
executable file
·49 lines (49 loc) · 1.26 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": "redux-react-native-i18n",
"version": "1.2.0",
"description": "An i18n solution with plural forms support for React Native apps on Redux",
"main": "lib/index.js",
"scripts": {
"test": "echo \"Error: no test specified\"",
"compile": "babel src -d lib",
"prepublish": "npm run compile",
"build": "npm run compile"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/derzunov/redux-react-native-i18n.git"
},
"keywords": [
"redux",
"i18n",
"localization",
"internationalization",
"react",
"l10n",
"react native",
"native"
],
"author": "derzunov <derzunov.work@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/derzunov/redux-react-native-i18n/issues"
},
"homepage": "https://github.com/derzunov/redux-react-native-i18n#readme",
"dependencies": {
"redux-react-i18n": "^1.3.0",
"translatr": ">=2.1.0"
},
"peerDependencies": {
"react-dom": ">=16.0.0",
"react-redux": ">=5.0.0",
"redux": ">=3.0.0",
"react": ">=16.0.0"
}
}