-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1015 Bytes
/
package.json
File metadata and controls
48 lines (48 loc) · 1015 Bytes
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
{
"name": "ektest",
"version": "0.1.9",
"description": "Light weight simple testing library with Electron and Puppeteer support",
"keywords": [
"Javascript",
"Test",
"Jest",
"Mocha",
"Electron",
"Puppeteer",
"E2E Testing"
],
"license": "MIT",
"author": "Ajit Kumar",
"type": "module",
"main": "index.js",
"bin": {
"ektest": "./index.js"
},
"files": [
"index.js",
"config.js",
"index.d.ts",
"webpack.config.js",
"lib/"
],
"directories": {
"lib": "lib"
},
"scripts": {
"test": "npm pack && node test-basic.js && node test-webpack.js && node test-electron.js && node test-webapp.js",
"test:electron": "npm pack && node test-electron.js",
"test:webapp": "npm pack && node test-webapp.js"
},
"devDependencies": {
"@biomejs/biome": "^2.0.6",
"puppeteer": "^24.27.0"
},
"peerDependencies": {
"puppeteer": ">=23.0.0"
},
"peerDependenciesMeta": {
"puppeteer": {
"optional": true
}
}
}