-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.38 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
{
"name": "polyglot-react",
"version": "1.0.1",
"description": "A higher order component that makes it easier to use Polyglot in a React application",
"main": "build/index.js",
"directories": {
"test": "test"
},
"scripts": {
"build": "babel src --out-dir build",
"prepublish": "babel src --out-dir build",
"test": "mocha test/setup.js test/**/*.spec.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hoducha/polyglot-react.git"
},
"keywords": [
"react",
"polyglot",
"i18n",
"translation",
"localization",
"internationalization"
],
"author": "Ha Ho <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/hoducha/polyglot-react/issues"
},
"homepage": "https://github.com/hoducha/polyglot-react#readme",
"peerDependencies": {
"node-polyglot": "^2.2.2",
"react": "^15.0.0 || ^16.0.0"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-plugin-transform-decorators-legacy": "1.3.5",
"babel-preset-airbnb": "2.6.0",
"babel-preset-stage-1": "6.24.1",
"babel-register": "6.26.0",
"chai": "3.5.0",
"enzyme": "3.2.0",
"enzyme-adapter-react-16": "1.1.1",
"jsdom": "9.12.0",
"mocha": "3.5.3",
"react": "16.2.0",
"react-dom": "16.9.0",
"node-polyglot": "2.2.2"
},
"dependencies": {
"prop-types": "^15.6.0 || ^16.0.0"
}
}