-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
63 lines (63 loc) · 1.69 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
{
"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": "^5.5.0",
"csv-parse": "^4.15.4",
"csv-stringify": "^5.6.2",
"globrex": "^0.1.2",
"kleur": "^4.1.4",
"lighthouse": "^9.5.0",
"log-update": "^4.0.0",
"sade": "^1.7.4",
"sanitize-filename": "^1.6.3",
"simplecrawler": "^1.1.9"
},
"engines": {
"node": "^14.0.0 || ^16.0.0 || ^18.0.0"
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.0",
"@changesets/cli": "^2.10.3",
"@cloudfour/eslint-plugin": "^16.0.0",
"@types/globrex": "^0.1.0",
"@types/sade": "^1.7.2",
"@types/simplecrawler": "^1.1.1",
"eslint": "^7.27.0",
"prettier": "^2.3.0",
"timekeeper": "^2.2.0",
"typescript": "~4.7.2",
"vite": "^2.9.9",
"vitest": "^0.13.1"
},
"eslintConfig": {
"extends": [
"plugin:@cloudfour/recommended"
]
},
"prettier": {
"singleQuote": true
},
"type": "module"
}