-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
executable file
·61 lines (61 loc) · 1.55 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": "redux-react-i18n",
"version": "2.0.1",
"description": "i18n solution for react/redux",
"main": "lib/index.js",
"scripts": {
"test": "jest",
"compile": "babel src -d lib",
"prepublish": "npm run compile",
"build": "npm run compile"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/runtime": "^7.3.1",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.4.2",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"jest": "^22.4.3",
"react": ">=16.0.0",
"react-dom": ">=16.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/derzunov/redux-react-i18n.git"
},
"keywords": [
"redux",
"i18n",
"localization",
"internationalization",
"react",
"l10n"
],
"author": "derzunov <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/derzunov/redux-react-i18n/issues"
},
"homepage": "https://github.com/derzunov/redux-react-i18n#readme",
"peerDependencies": {
"react": ">=16.0.0",
"react-dom": ">=16.0.0",
"react-redux": ">=5.0.0",
"redux": ">=3.0.0"
},
"dependencies": {
"translatr": ">=2.1.0"
},
"jest": {
"rootDir": "./tests",
"setupTestFrameworkScriptFile": "<rootDir>/setupTests.js",
"testURL": "http://localhost/"
}
}