-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
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": "lighthouse-runner-cli",
"author": "Thorsten Herfurtner",
"version": "0.1.0",
"description": "CLI tool to run lighthouse multiple times on a given web page and aggregate the data",
"type": "module",
"license": "ISC",
"main": "index.js",
"bin": {
"lighthouse-runner": "./bin/index.js"
},
"scripts": {
"build": "tsc && npm run chmod",
"chmod": "chmod u+x ./bin/index.js",
"lint": "eslint '**/*.{js,ts}' --fix",
"prettier": "prettier --write .",
"start": "tsc && node bin",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"node",
"lighthouse",
"cli"
],
"devDependencies": {
"@types/cross-spawn": "^6.0.2",
"@types/node": "^20.5.3",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.2",
"typescript": "^5.1.6"
},
"dependencies": {
"chalk": "^5.3.0",
"commander": "^11.0.0",
"cross-spawn": "^7.0.3",
"lighthouse": "^11.0.0"
}
}