-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
66 lines (66 loc) · 1.52 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "jest-electron",
"version": "0.1.12",
"description": "Easiest way to run jest unit test cases in electron.",
"main": "index.js",
"files": [
"lib",
"runner.js",
"environment.js"
],
"scripts": {
"test-live": "DEBUG_MODE=1 jest",
"test": "jest",
"cp": "copyfiles -u 1 src/electron/**/*.{html,css} lib",
"build": "rimraf lib && tsc && npm run cp",
"prepublishOnly": "npm run build"
},
"jest": {
"runner": "./runner",
"testEnvironment": "./environment",
"preset": "ts-jest",
"collectCoverage": true,
"testRegex": "(/__tests__/.*\\.(test|spec))\\.tsx?$",
"collectCoverageFrom": [
"src/**/*.ts"
]
},
"dependencies": {
"electron": "^12",
"jest-haste-map": "~24.9.0",
"jest-message-util": "~24.9.0",
"jest-mock": "~24.9.0",
"jest-resolve": "~24.9.0",
"jest-runner": "~24.9.0",
"jest-runtime": "~24.9.0",
"jest-util": "~24.9.0",
"throat": "^5.0.0",
"tslib": "^1.10.0"
},
"peerDependencies": {
"jest": "^24.0.0"
},
"devDependencies": {
"@types/jest": "^24.0.18",
"@types/react": "^16.9.15",
"copyfiles": "^2.1.1",
"jest": "^24.9.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"rimraf": "^3.0.0",
"ts-jest": "^24.0.2",
"typescript": "^3.6.2"
},
"keywords": [
"jest-electron",
"jest-runner",
"jest",
"electron"
],
"author": "hustcc",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/hustcc/jest-electron.git"
}
}