-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.1 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
{
"name": "react-mobx-i18n",
"version": "1.2.0",
"description": "Make React components translatable using MobX",
"main": "index.js",
"scripts": {
"test": "mocha test --compilers js:babel-register",
"precommit": "npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jverhoelen/react-mobx-i18n.git"
},
"keywords": [
"react",
"i18n",
"mobx"
],
"author": "mixed",
"license": "MIT",
"bugs": {
"url": "https://github.com/jverhoelen/react-mobx-i18n/issues"
},
"homepage": "https://github.com/jverhoelen/react-mobx-i18n#readme",
"devDependencies": {
"babel-preset-react": "^6.11.1",
"babel-register": "^6.11.6",
"chai": "^4.1.2",
"enzyme": "^2.4.1 || ^3.0.0",
"enzyme-adapter-react-16": "^1.5.0",
"husky": "^0.14.3",
"jsdom": "^9.4.1",
"mocha": "^5.2.0",
"react-dom": "^15.3.0 || ^16.0.0"
},
"dependencies": {
"i18n-harmony": "^1.4.0",
"mobx": "^3.0.0 || ^4.0.0 || ^5.0.0",
"mobx-react": "^4.0.0 || ^5.0.0 || ^6.0.0",
"prop-types": "^15.6.2 || ^16.0.0",
"react": "^15.3.0 || ^16.0.0"
}
}