-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1006 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 1006 Bytes
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
{
"name": "lighthouse-report-action",
"version": "1.1.2",
"description": "GitHub action to display Lighthouse report result as a Run Check",
"main": "dist/index.js",
"scripts": {
"build": "ncc build index.ts"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/manrueda/lighthouse-report-action.git"
},
"keywords": [
"github",
"actions",
"lighthouse",
"report",
"annotation"
],
"author": "Manuel Rueda <manuel.rueda.un@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/manrueda/lighthouse-report-action/issues"
},
"homepage": "https://github.com/manrueda/lighthouse-report-action#readme",
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/github": "^2.1.1",
"glob": "^7.1.6"
},
"devDependencies": {
"@types/glob": "^7.1.1",
"@zeit/ncc": "^0.22.1",
"husky": "^4.2.5"
},
"husky": {
"hooks": {
"pre-commit": "npm run build && git add dist/index.js"
}
}
}