-
-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
52 lines (52 loc) · 1.26 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
{
"name": "playwright-lighthouse",
"version": "4.0.0",
"description": "Playwright Lighthouse Audit",
"main": "index.js",
"type": "module",
"scripts": {
"test": "mocha --parallel --timeout 30000",
"lint": "eslint --ext .js --ignore-path .gitignore .",
"prettier": "prettier --check \"**/*.{js,md,yml}\"",
"prettier:fix": "prettier --write \"**/*.{js,md,yml}\""
},
"repository": {
"type": "git",
"url": "https://github.com/abhinaba-ghosh/playwright-lighthouse"
},
"engines": {
"node": ">=16.x"
},
"keywords": [
"playwright",
"playwright-lighthouse",
"playwright-audit"
],
"author": "Abhinaba Ghosh <askabhinaba@gmail.com>",
"license": "MIT",
"dependencies": {
"chalk": "^4.1.2",
"ua-parser-js": "^1.0.2"
},
"devDependencies": {
"@types/mocha": "9.1.0",
"@types/node": "^16.11.26",
"chai": "^4.3.6",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"lighthouse": "^11.4.0",
"mocha": "9.2.2",
"playwright-core": "^1.40.1",
"prettier": "^3.2.1"
},
"peerDependencies": {
"lighthouse": ">= 10.0.0",
"playwright-core": "^1.19.2"
},
"peerDependenciesMeta": {
"playwright-core": {
"optional": true
}
}
}