-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.59 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.59 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
{
"name": "app",
"version": "1.0.0",
"description": "A Chrome extension designed for making web exploratory testing easier",
"main": "background.js",
"directories": {
"lib": "lib",
"test": "test"
},
"devDependencies": {
"@babel/core": "^7.27.1",
"@babel/preset-env": "^7.27.2",
"@playwright/test": "^1.58.2",
"babel-jest": "^29.7.0",
"cross-env": "^10.1.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0"
},
"scripts": {
"test": "jest",
"test:e2e": "playwright test smoke.spec.js basic-functionality.spec.js",
"test:e2e:all": "playwright test smoke.spec.js basic-functionality.spec.js reports-export.spec.js crop-screenshot.spec.js",
"test:e2e:headed": "cross-env HEADED=true playwright test smoke.spec.js basic-functionality.spec.js",
"test:e2e:ui": "playwright test --ui",
"test:e2e:debug": "playwright test smoke.spec.js basic-functionality.spec.js --debug",
"test:e2e:report": "playwright show-report",
"test:e2e:crop": "cross-env HEADED=true playwright test crop-screenshot.spec.js",
"test:e2e:ci": "playwright test smoke.spec.js basic-functionality.spec.js reports-export.spec.js crop-screenshot.spec.js",
"test:all": "npm test && npm run test:e2e:all"
},
"repository": {
"type": "git",
"url": "git+https://github.com/morvader/ExploratoryTestingChromeExtension.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/morvader/ExploratoryTestingChromeExtension/issues"
},
"homepage": "https://github.com/morvader/ExploratoryTestingChromeExtension#readme"
}