-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
64 lines (64 loc) · 1.44 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
54
55
56
57
58
59
60
61
62
63
64
{
"name": "@sitespeed.io/plugin-lighthouse",
"version": "12.3.0",
"type": "module",
"exports": "./index.js",
"publishConfig": {
"access": "public"
},
"description": "Lighthouse plugin for sitespeed.io",
"repository": {
"type": "git",
"url": "git+https://github.com/sitespeedio/plugin-lighthouse.git"
},
"keywords": [
"sitespeed.io",
"lighthouse",
"webperf",
"perfmatters"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/sitespeedio/plugin-lighthouse/issues"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"engines": {
"node": ">=14.19.1"
},
"lint-staged": {
"*.js": [
"npm run lint:fix",
"prettier --write --single-quote",
"git add"
]
},
"devDependencies": {
"eslint": "8.35.0",
"eslint-config-prettier": "6.1.0",
"eslint-plugin-prettier": "3.1.0",
"eslint-plugin-unicorn": "45.0.2",
"husky": "3.0.4",
"lint-staged": "9.2.4",
"prettier": "1.18.2",
"pug-lint": "2.6.0"
},
"dependencies": {
"chrome-launcher": "1.1.2",
"lighthouse": "12.3.0",
"@sitespeed.io/plugin": "1.0.0"
},
"overrides": {
"puppeteer-core": "20.8.0",
"puppeteer": "20.8.0"
},
"scripts": {
"lint": "eslint . && npm run pug-lint",
"lint:fix": "eslint . --fix",
"eslint-check": "eslint --print-config .eslintrc.json | eslint-config-prettier-check",
"pug-lint": "pug-lint lighthouse.pug"
}
}