-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
79 lines (79 loc) · 2.14 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
{
"name": "lighthouse-check-action",
"version": "12.0.1",
"description": "A GitHub Action for running multiple Lighthouse audits automatically in a workflow with a rich set of bonus features.",
"main": "dist/index.js",
"scripts": {
"build": "npm run clean && npm run build:js",
"build:js": "tsc -p tsconfig.release.json",
"build:watch": "tsc -w -p tsconfig.release.json",
"clean": "rimraf dist",
"jest": "jest",
"lint": "eslint . --ext .ts,.tsx",
"test": "npm run jest",
"test:headers": "ts-node src/test/headerServer.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/foo-software/lighthouse-check-action.git"
},
"author": "Adam Henson <[email protected]> (https://github.com/adamhenson)",
"license": "MIT",
"bugs": {
"url": "https://github.com/foo-software/lighthouse-check-action/issues"
},
"homepage": "https://github.com/foo-software/lighthouse-check-action#readme",
"keywords": [
"github actions",
"actions",
"github",
"lighthouse",
"google",
"cli",
"performance",
"accessibility",
"seo",
"progressive web app",
"best practices",
"website performance monitoring",
"foo",
"foo.software"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"prettier --single-quote --write",
"npm run lint"
]
},
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"@foo-software/lighthouse-check": "^10.0.0",
"express": "^4.18.2",
"lodash.get": "^4.4.2"
},
"devDependencies": {
"@types/express": "^4.17.14",
"@types/jest": "^29.2.3",
"@types/lodash.get": "^4.4.7",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"@vercel/ncc": "^0.34.0",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^27.1.5",
"husky": "^8.0.2",
"jest": "^29.3.1",
"lint-staged": "^13.0.3",
"prettier": "^2.8.0",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.3"
}
}