-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
76 lines (76 loc) · 2.06 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
{
"name": "@foo-software/lighthouse-check",
"version": "10.1.2",
"description": "An NPM module and CLI for automated Lighthouse audits.",
"main": "dist/index.js",
"engines": {
"node": ">= 20.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/foo-software/lighthouse-check.git"
},
"keywords": [
"lighthouse",
"google",
"cli",
"performance",
"accessibility",
"seo",
"progressive web app",
"best practices",
"website performance monitoring",
"foo",
"foo.software"
],
"author": "Adam Henson <adamhenson1979@gmail.com> (https://github.com/adamhenson)",
"license": "MIT",
"bugs": {
"url": "https://github.com/foo-software/lighthouse-check/issues"
},
"homepage": "https://github.com/foo-software/lighthouse-check#readme",
"bin": {
"lighthouse-check": "dist/bin/lighthouse-check.js",
"lighthouse-check-status": "dist/bin/lighthouse-check-status.js"
},
"scripts": {
"clean": "rimraf dist",
"codecov": "codecov",
"build": "babel ./src --out-dir dist",
"prepare": "npm run clean && npm run build && husky install",
"prettier": "prettier --single-quote --write ./src",
"test": "jest"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --single-quote --write",
"git add"
],
"*.{js,css,md}": "prettier --write"
},
"dependencies": {
"@foo-software/lighthouse-persist": "^8.1.0",
"@slack/webhook": "^6.1.0",
"babel-jest": "^29.3.1",
"lodash.get": "^4.4.2",
"meow": "^7.1.1",
"node-fetch": "^3.3.2",
"ora": "^3.4.0",
"table": "^6.8.1"
},
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.20.2",
"@babel/node": "^7.20.2",
"@babel/plugin-transform-modules-commonjs": "^7.19.6",
"@babel/preset-env": "^7.20.2",
"@babel/register": "^7.18.9",
"@trivago/prettier-plugin-sort-imports": "^3.4.0",
"codecov": "^3.8.3",
"husky": "^8.0.2",
"jest": "^29.3.1",
"lint-staged": "^13.0.3",
"prettier": "^2.8.0",
"rimraf": "^3.0.2"
}
}