-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 987 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": "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": "Abir Roy",
"license": "MIT",
"dependencies": {
"axios": "^0.21.4",
"csv-writer": "^1.6.0",
"csvtojson": "^2.0.10",
"express": "^4.18.3",
"fs": "0.0.1-security",
"json2csv": "^5.0.6",
"moment": "^2.29.1",
"multer": "^1.4.5-lts.1"
},
"devDependencies": {
"eslint": "^7.26.0"
}
}