-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
73 lines (73 loc) · 1.79 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
64
65
66
67
68
69
70
71
72
73
{
"name": "auto-lighthouse",
"version": "3.0.2",
"description": "A CLI for crawling a domain and generating both mobile and desktop reports for each page.",
"main": "cli.js",
"engines": {
"node": ">=14.0.0"
},
"bin": {
"auto-lighthouse": "./cli.js"
},
"scripts": {
"start": "node cli",
"release": "release-it",
"test": "nyc --reporter=html --reporter=text jasmine --random=false",
"coverage": "npm run test && node nyc_server",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TGiles/auto-lighthouse.git"
},
"author": "Tim Giles",
"license": "GPL-3.0-or-later",
"keywords": [
"cli",
"lighthouse",
"reporting",
"accessibility",
"a11y",
"automation"
],
"bugs": {
"url": "https://github.com/TGiles/auto-lighthouse/issues"
},
"homepage": "https://tgiles.github.io/auto-lighthouse/",
"dependencies": {
"chrome-launcher": "^0.15.0",
"cli-progress": "^3.8.2",
"cli-spinner": "^0.2.10",
"commander": "^9.1.0",
"express": "^4.17.1",
"lighthouse": "^9.0.0",
"open": "8.4.0",
"serve-index": "^1.9.1",
"simplecrawler": "^1.1.8"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@release-it/conventional-changelog": "^5.1.0",
"husky": "^8.0.1",
"jasmine": "4.3.0",
"nyc": "^15.1.0",
"release-it": "^15.3.0"
},
"release-it": {
"github": {
"releaseName": "release: ${version}",
"release": true
},
"git": {
"commitMessage": "release: ${version}",
"tagAnnotation": "release: ${version}"
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": "angular",
"infile": "CHANGELOG.md"
}
}
}
}