-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
59 lines (59 loc) · 1.61 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
{
"name": "lighthouse-parade",
"version": "2.1.0",
"description": "A Node.js command line tool that crawls a domain and compiles a report with lighthouse performance data for every page.",
"bin": "dist/src/cli.js",
"files": [
"dist/src/*.js"
],
"repository": "cloudfour/lighthouse-parade",
"scripts": {
"test": "vitest run",
"test:watch": "vitest watch",
"check-lint": "eslint . && prettier --check .",
"lint": "eslint --fix . && prettier --write .",
"type": "tsc --noEmit",
"type:watch": "tsc --watch --noEmit",
"build": "tsc",
"build:watch": "tsc --watch",
"changeset": "changeset",
"version": "changeset version && prettier --write .",
"release": "npm run build && changeset publish"
},
"author": "[email protected]",
"license": "MIT",
"dependencies": {
"csv": "6.3.11",
"csv-parse": "4.16.3",
"csv-stringify": "5.6.5",
"globrex": "0.1.2",
"kleur": "4.1.5",
"lighthouse": "9.6.8",
"log-update": "6.1.0",
"sade": "1.8.1",
"sanitize-filename": "1.6.3",
"simplecrawler": "1.1.9"
},
"engines": {
"node": "^18.0.0 || ^20.0.0 || ^22.0.0"
},
"devDependencies": {
"@changesets/changelog-github": "0.5.1",
"@changesets/cli": "2.28.1",
"@cloudfour/eslint-config": "24.0.0",
"@types/globrex": "0.1.4",
"@types/node": "22.13.5",
"@types/sade": "1.8.0",
"@types/simplecrawler": "1.1.5",
"eslint": "9.14.0",
"prettier": "3.5.2",
"timekeeper": "2.3.1",
"typescript": "4.9.5",
"vite": "6.2.0",
"vitest": "3.0.7"
},
"prettier": {
"singleQuote": true
},
"type": "module"
}