-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
executable file
·42 lines (42 loc) · 1.1 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
{
"name": "webpack-lighthouse-plugin",
"version": "1.0.8",
"description": "A Lighthouse plugin for Webpack",
"main": "src/webpack-lighthouse-plugin.js",
"scripts": {
"demo": "cd test && webpack",
"lint": "eslint src/webpack-shell-plugin.js",
"clean": "rm -rf test/*.json test/*.html test/*.log"
},
"repository": {
"type": "git",
"url": "git+https://github.com/addyosmani/webpack-lighthouse-plugin.git"
},
"keywords": [
"progressive web apps",
"lighthouse",
"performance",
"auditing",
"time to interactive",
"tti",
"first meaningful paint",
"performance metrics",
"performance audits"
],
"author": "Addy Osmani",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/addyosmani/webpack-lighthouse-plugin/issues"
},
"homepage": "https://github.com/addyosmani/webpack-lighthouse-plugin#readme",
"devDependencies": {
"eslint": "^7.27.0",
"eslint-config-google": "^0.14.0",
"webpack": "^5.38.1",
"webpack-cli": "^4.7.0"
},
"dependencies": {
"lighthouse": "^8.0.0",
"lighthouse-logger": "^1.2.0"
}
}