-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 871 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 871 Bytes
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
{
"name": "react-i18n",
"version": "1.0.1",
"description": "i18n-js integration with React",
"readme": "README.md",
"main": "index.js",
"scripts": {
"test": "yarn add --peer react prop-types && jest"
},
"repository": {
"type": "git",
"url": "https://github.com/alvinsj/react-i18n.git"
},
"keywords": ["i18n", "internationalization", "react", "intl", "reactjs"],
"author": "email.to.alvin@gmail.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/alvinsj/react-i18n/issues"
},
"homepage": "https://github.com/alvinsj/react-i18n",
"dependencies": {
"create-react-class": "15.6.3",
"i18n-js": ">=1.0.0",
"object-assign": "^4.0.1"
},
"peerDependencies": {
"prop-types": "^15.6.x",
"react": "^16.3.2"
},
"devDependencies": {
"jest": "^22.4.3",
"react-test-renderer": "^16.3.2"
}
}