-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
46 lines (46 loc) · 947 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
37
38
39
40
41
42
43
44
45
46
{
"name": "react-translate",
"version": "7.0.1",
"description": "react utilities for simple i18n",
"main": "./lib/ReactTranslate.js",
"files": [
"README.md",
"LICENSE",
"lib"
],
"repository": {
"type": "git",
"url": "https://github.com/bloodyowl/react-translate"
},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-jest": "^15.0.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": "16.8.4",
"react-dom": "16.8.4"
},
"peerDependencies": {
"react": ">=16.8.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"
}
}