-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 975 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
{
"name": "lighthouse_audit",
"version": "1.0.0",
"description": "Node.JS tool to run lighthouse audits",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"start": "node dist/index.js",
"compare": "node lh.js --from $FROM --to $TO",
"perf": "node dist/lh.js --url http://localhost:4200/account/cruise-planner?bookingId=291068&shipCode=SY&sailDate=20200523"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ricardo-hdz/lighthouse.git"
},
"keywords": [
"lighthouse",
"chrome"
],
"author": "Ricardo Hdz",
"license": "ISC",
"bugs": {
"url": "https://github.com/ricardo-hdz/lighthouse/issues"
},
"homepage": "https://github.com/ricardo-hdz/lighthouse#readme",
"devDependencies": {
"glob": "^7.1.6",
"lighthouse": "^5.6.0",
"puppeteer": "^3.0.0",
"typescript": "^3.8.3",
"url": "^0.11.0",
"yargs": "^15.3.1"
}
}