-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
45 lines (45 loc) · 1.28 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
{
"name": "react-redux-multilingual",
"version": "2.0.4",
"description": "A simple multilingual translate component and HOC for react and redux",
"main": "lib/index.js",
"scripts": {
"prettier": "prettier --single-quote --no-semi 'src/*.js' --write",
"release": "npm run build && npm publish",
"build": "BABEL_ENV=production babel src --out-dir lib",
"watch": "BABEL_ENV=production babel --watch src --out-dir lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rmdort/react-redux-multilingual.git"
},
"keywords": [
"react",
"translate",
"multilingual"
],
"author": "Vinay M <rmdort@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/rmdort/react-redux-multilingual/issues"
},
"homepage": "https://github.com/rmdort/react-redux-multilingual#readme",
"dependencies": {
"hoist-non-react-statics": "^1.2.0",
"prettier-standard": "^8.0.1",
"prop-types": "^15.5.8"
},
"peerDependencies": {
"react": ">16.3.0",
"react-redux": ">4.4.0",
"redux": ">3.3.1"
},
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-core": "^6.9.1",
"babel-eslint": "^6.0.4",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0"
}
}