-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.38 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.38 KB
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
53
{
"name": "screen-tester",
"version": "1.0.0",
"description": "Test and find out problems of your screen/monitor before it's too late",
"main": "index.html",
"scripts": {
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/trtshen/screen-tester.git"
},
"keywords": ["screen", "monitor", "test", "display", "diagnostics"],
"author": "",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.23.0",
"@babel/preset-env": "^7.23.0",
"@babel/preset-react": "^7.22.0",
"@testing-library/jest-dom": "^6.1.0",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.5.0",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"jest": {
"testEnvironment": "jsdom",
"setupFilesAfterEnv": ["<rootDir>/src/setupTests.js"],
"collectCoverageFrom": [
"src/**/*.js",
"app.js",
"!src/**/*.test.js",
"!src/setupTests.js",
"!node_modules/**",
"!coverage/**"
],
"coverageReporters": ["text", "lcov", "html"],
"coverageDirectory": "coverage",
"coverageThreshold": {
"global": {
"branches": 0,
"functions": 0,
"lines": 0,
"statements": 0
}
}
}
}