-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 896 Bytes
/
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
{
"name": "lighthouse-eco-index-aggregator",
"version": "1.0.2",
"description": "Tool for aggregating lighthouse and eco-index results",
"main": "src/cli.js",
"private": false,
"files": [
"src",
"readme.md",
"globalReports.html",
"LICENSE.md",
"package.json",
"package-lock.json",
".eslintrc.js"
],
"scripts": {
"start": "node src/cli.js --srcLighthouse=./example/lighthouse --srcEcoIndex=./example/ecoindex --reports=html --outputPath=./example/report_final",
"lint": "eslint",
"test": "jest --coverage src/",
"prepare": "husky install"
},
"license": "MIT",
"dependencies": {
"command-line-args": "^5.2.1",
"command-line-usage": "^5.0.0",
"ejs": "^3.1.8",
"fs-extra": "^11.1.1",
"html-minifier": "^4.0.0"
},
"devDependencies": {
"eslint": "^8.36.0",
"husky": "^8.0.3",
"jest": "^29.5.0"
}
}