forked from foo-software/lighthouse-check-action
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.53 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-check-action",
"version": "1.0.3",
"description": "A GitHub Action for running multiple Lighthouse audits automatically in a workflow with a rich set of bonus features.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/foo-software/lighthouse-check-action.git"
},
"author": "Adam Henson <adamhenson1979@gmail.com> (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"
],
"jest": {
"modulePathIgnorePatterns": [
"<rootDir>/dist/"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --single-quote --write",
"git add"
]
},
"dependencies": {
"@actions/core": "^1.1.1",
"@actions/github": "^1.1.0",
"@foo-software/lighthouse-check": "0.0.60",
"lodash.get": "^4.4.2"
},
"devDependencies": {
"husky": "^3.0.1",
"jest": "^24.8.0",
"lint-staged": "^9.2.0",
"prettier": "^1.18.2"
}
}