-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
38 lines (38 loc) · 1.16 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
{
"name": "localize-react",
"version": "1.7.1",
"description": "React Localization Library",
"main": "dist/localize-react.js",
"repository": "git@github.com:yankouskia/localize-react.git",
"author": "yankouskia <aleksandr.yankovskiy@gmail.com>",
"license": "MIT",
"peerDependencies": {
"react": ">=16.8.0"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-transform-object-assign": "^7.2.0",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"babel-jest": "^24.8.0",
"babel-loader": "^8.0.6",
"codecov": "^3.5.0",
"jest": "^24.8.0",
"react": "^16.8.6",
"react-test-renderer": "^16.8.6",
"rollup": "^1.17.0",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.0.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-uglify": "^6.0.2"
},
"scripts": {
"build": "NODE_ENV=production rollup -c",
"test": "jest",
"coverage": "jest --coverage",
"codecov": "codecov -t 8365e97e-7298-4a00-ad32-740d44db89e5 -f coverage/*.json"
},
"types": "./index.d.ts"
}