-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.25 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
{
"name": "codeceptjs-lighthouse-helper",
"version": "1.0.0",
"description": "Lighthouse Audit Helper for codeceptjs",
"main": "src/index.ts",
"scripts": {
"lint": "rome check src",
"lint:fix": "rome check src --apply-suggested",
"prepare": "husky install",
"code:format": "rome format src --write",
"tsc": "tsc"
},
"keywords": [
"codeceptjs",
"lighthouse-playwright"
],
"license": "ISC",
"dependencies": {
"@codeceptjs/helper": "^2.0.1",
"lighthouse": "^9.6.8",
"playwright-lighthouse": "^2.2.2",
"codeceptjs": "^3.4.1"
},
"devDependencies": {
"flowmatic-cicd": "^1.2.9",
"husky": "^8.0.3",
"lint-staged": "^13.1.2",
"typescript": "^4.9.5",
"rome": "^11.0.0"
},
"files": [
"src/**",
"README.md",
"bin/parallel.js"
],
"release": {
"branches": [
"main"
]
},
"repository": {
"type": "git",
"url": "[email protected]:kobenguyent/codeceptjs-lighthouse-helper.git"
},
"bugs": {
"url": "https://github.com/kobenguyent/codeceptjs-lighthouse-helper/issues"
},
"homepage": "https://github.com/kobenguyent/codeceptjs-lighthouse-helper#readme",
"author": "Thanh Nguyen <[email protected]>",
"lint-staged": {
"src/*": "rome check src"
}
}