-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
80 lines (80 loc) · 1.81 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
74
75
76
77
78
79
80
{
"name": "lighthouse-ci",
"version": "1.13.1",
"description": "CLI implementation for running Lighthouse with any CI tool",
"scripts": {
"test": "npm run format && xo && jest --detectOpenHandles",
"xo": "xo",
"test:watch": "jest --watchAll --detectOpenHandles",
"format": "prettier --write \"**/*.{js,js}\"",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"release": "np",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"type": "commonjs",
"dependencies": {
"chrome-launcher": "^0.14.0",
"lighthouse": "^8.4.0",
"meow": "^9.0.0",
"mkdirp": "^1.0.4",
"ora": "^5.4.0",
"rimraf": "^3.0.2",
"update-notifier": "^5.1.0"
},
"devDependencies": {
"@types/jest": "^26.0.24",
"@types/ora": "^3.2.0",
"all-contributors-cli": "^6.20.0",
"chalk": "^4.1.1",
"jest": "^27.0.6",
"np": "^7.5.0",
"prettier": "^2.3.2",
"snyk": "^1.660.0",
"xo": "~0.36.0"
},
"keywords": [
"devtools",
"lighthouse",
"ci"
],
"bin": {
"lighthouse-ci": "bin/cli.js"
},
"files": [
"lib",
"bin",
"README.md",
"LICENSE"
],
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"xo": {
"prettier": true,
"envs": [
"node",
"es6",
"jest"
],
"rules": {
"max-params": [
"error",
5
],
"unicorn/no-reduce": 0
}
},
"author": "Andrea Sonny <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/andreasonny83/lighthouse-ci.git"
},
"bugs": {
"url": "https://github.com/andreasonny83/lighthouse-ci.git/issues"
},
"homepage": "https://github.com/andreasonny83/lighthouse-ci.git#readme",
"snyk": true
}