-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.24 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
{
"name": "welcometothejungle-widget",
"version": "0.1.0",
"private": true,
"dependencies": {
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.9.1",
"jest-styled-components": "^6.3.1",
"prop-types": "^15.7.2",
"react": "^16.8.1",
"react-dom": "^16.8.1",
"react-scripts": "2.1.5",
"react-test-renderer": "^16.8.1",
"styled-components": "^4.1.3",
"styled-normalize": "^8.0.6"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"coverage": "yarn test -- --coverage",
"deploy": "yarn build && now build --name welcometothejungle-widget",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx,ts,tsx}",
"!<rootDir>/node_modules/",
"!src/index.js",
"!src/serviceWorker.js",
"!src/setupTests.js",
"!src/components/Icon/icons-components/*"
],
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
}
}
}