-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
32 lines (32 loc) · 913 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
{
"name": "google-pagespeed-bulk",
"version": "1.0.0",
"description": "Script to extract Google PageSpeed API Data from multiple URLs. The script allows to perform multiple tests in the same run and calculate the median value for each extracted speed metric and Core Web Vitals metric from the total number of results.",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node index.js"
},
"keywords": [
"pagespeed insights api",
"pagespeed insights",
"google pagespeed insights api",
"google api",
"website speed tracking",
"core web vitals",
"crux",
"chrome user experience report"
],
"author": "Jose Luis Hernando",
"license": "MIT",
"dependencies": {
"axios": "^0.21.1",
"csvtojson": "^2.0.10",
"fs": "0.0.1-security",
"json2csv": "^5.0.6",
"moment": "^2.29.1"
},
"devDependencies": {
"eslint": "^7.26.0"
}
}