-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.47 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
{
"name": "react-redux-localization",
"version": "1.1.3",
"description": "Simple localization helper for React/Redux applications",
"main": "./lib/index.js",
"scripts": {
"test": "jest",
"prepublish": "npm run clean && npm run build",
"build": "cross-env BABEL_ENV=production babel src --out-dir lib",
"clean": "rimraf lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AlternativaPlatform/react-redux-localization.git"
},
"files": [
"lib",
"src"
],
"keywords": [
"react",
"reactjs",
"redux",
"localization",
"i18n"
],
"author": "Fedor Kulikov",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/AlternativaPlatform/react-redux-localization/issues"
},
"homepage": "https://github.com/AlternativaPlatform/react-redux-localization",
"dependencies": {
"reselect": "^3.0.0",
"string-format": "^0.5.0"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0-0 || ^16.0.0-0",
"redux": "^2.0.0 || ^3.0.0",
"react-redux": "^3.0.0 || ^4.0.0 || ^5.0.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-es2015": "^6.24.0",
"babel-preset-react": "^6.23.0",
"cross-env": "^4.0.0",
"jest": "^19.0.2",
"react": "^15.5.3",
"react-redux": "^5.0.4",
"react-test-renderer": "^15.4.2",
"redux": "^3.6.0",
"redux-mock-store": "^1.2.2",
"rimraf": "^2.6.1"
}
}