-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 995 Bytes
/
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
{
"name": "lighthouse-multi",
"version": "0.20.0",
"description": "lighthouse wrapper that runs x number of audits against a list of endpoints",
"keywords": [
"build",
"javascript",
"lighthouse",
"performance",
"typescript"
],
"main": "bin/index.js",
"preferGlobal": true,
"repository": "git@github.com:rpivo/lighthouse-multi.git",
"author": "Ryan Pivovar <ryanpivovar@gmail.com>",
"license": "MIT",
"bin": {
"lighthouse-multi": "./bin/index.js"
},
"scripts": {
"build": "rm -rf bin && mkdir bin && tsc && cp src/lighthouseKeys.json bin/lighthouseKeys.json",
"diff": "bash ./sh/diff.sh",
"prepublishOnly": "npm run build",
"update": "npx npm-check-updates -u"
},
"dependencies": {
"@types/node": "^14.14.25",
"@types/yargs": "^16.0.0",
"chrome-launcher": "^0.13.4",
"lighthouse": "^7.0.1",
"lighthouse-logger": "^1.2.0",
"yargs": "^16.2.0"
},
"devDependencies": {
"typescript": "^4.1.3"
}
}