forked from bloodyowl/react-translate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 927 Bytes
/
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
{
"name": "react-translate",
"version": "6.0.1",
"description": "react utilities for simple i18n",
"main": "./lib/index.js",
"files": ["README.md", "LICENSE", "lib"],
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-jest": "^15.0.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.13.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"jest": "^21.2.1",
"raf": "^3.4.0",
"react": ">=15.0.0 || >=16.0.0",
"react-dom": ">=15.0.0 || >=16.0.0"
},
"peerDependencies": {
"react": ">=15.0.0 || >=16.0.0"
},
"scripts": {
"start": "babel src --out-dir lib --ignore='__tests__'",
"test": "jest"
},
"jest": {
"setupFiles": ["./scripts/jest/setup.js"],
"roots": ["src"]
},
"author": "bloodyowl",
"license": "MIT",
"dependencies": {
"invariant": "^2.1.2",
"prop-types": "^15.6.0"
}
}