forked from kayahr/jest-electron-runner
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.2 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 3.2 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "@kayahr/jest-electron-runner",
"version": "5.0.1",
"description": "Jest runner that spawns electron workers instead of node",
"keywords": [
"jest-electron",
"jest-runner",
"jest",
"electron",
"tests"
],
"license": "MIT",
"author": "Klaus Reimer <k@ailis.de>",
"repository": "github:kayahr/jest-electron-runner",
"bugs": "https://github.com/kayahr/jest-electron-runner/issues",
"homepage": "https://github.com/kayahr/jest-electron-runner",
"funding": "https://github.com/kayahr/jest-electron-runner?sponsor=1",
"publishConfig": {
"access": "public"
},
"files": [
"lib",
"src"
],
"scripts": {
"clean": "rimraf lib",
"copyfiles": "copyfiles -u 1 src/**/*.html lib",
"compile": "tsc",
"cspell": "cspell --no-progress",
"lint": "eslint --max-warnings 0 --ext .ts src",
"check": "jest",
"prepare": "npm run clean && npm run compile && npm run copyfiles",
"test": "npm run cspell && npm run lint && npm run check"
},
"jest": {
"projects": [
{
"displayName": "main",
"runner": "./lib/main/electron/TestRunnerMain",
"testEnvironment": "node",
"testMatch": [
"<rootDir>/lib/test/main/**/*.test.js"
]
},
{
"displayName": "renderer",
"runner": "./lib/main/electron/TestRunnerRenderer",
"testEnvironment": "./lib/main/electron/Environment",
"testMatch": [
"<rootDir>/lib/test/renderer/**/*.test.js"
]
}
]
},
"exports": {
".": "./lib/main/electron/TestRunnerRenderer.js",
"./main": "./lib/main/electron/TestRunnerMain.js",
"./environment": "./lib/main/electron/Environment.js"
},
"devDependencies": {
"@kayahr/eslint-config": "2.3.1",
"@types/express": "4.17.13",
"@types/jest": "27.4.1",
"@types/node-ipc": "9.2.0",
"@types/source-map-support": "0.5.4",
"@types/uuid": "8.3.4",
"@typescript-eslint/eslint-plugin": "5.21.0",
"@typescript-eslint/parser": "5.21.0",
"copyfiles": "2.4.1",
"cspell": "5.19.7",
"eslint": "8.14.0",
"eslint-plugin-deprecation": "1.3.2",
"eslint-plugin-simple-import-sort": "7.0.0",
"express": "4.18.1",
"rimraf": "3.0.2",
"typescript": "4.6.4"
},
"dependencies": {
"@jest/console": "^28.0.2",
"@jest/transform": "^28.0.3",
"electron": "^18.2.0",
"graceful-fs": "^4.2.10",
"jest": "^28.0.3",
"jest-docblock": "^28.0.2",
"jest-haste-map": "^28.0.2",
"jest-jasmine2": "^28.0.3",
"jest-leak-detector": "^28.0.2",
"jest-message-util": "^28.0.2",
"jest-mock": "^28.0.2",
"jest-resolve": "^28.0.3",
"jest-runtime": "^28.0.3",
"jest-util": "^28.0.2",
"node-ipc": "^10.1.0",
"source-map-support": "^0.5.21",
"throat": "^6.0.1",
"tslib": "^2.4.0",
"uuid": "^8.3.2"
}
}