-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.07 KB
/
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
38
39
40
41
42
43
44
45
46
47
{
"name": "kruk",
"version": "0.4.2",
"description": "Command Line Tool for CrUX Rest API",
"repository": "https://github.com/gotomi/kruk",
"main": "src/crux.js",
"type": "module",
"bin": {
"kruk": "./bin/index.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint --ext \".ts,.js\" --ignore-path .gitignore .",
"lint:fix": "npm run lint -- --fix"
},
"keywords": [
"CrUX",
"CrUX API",
"Chrome User Experience Report",
"Chrome UX Report",
"CrUX Report",
"Core Web Vitals",
"Web Performance",
"FCP",
"LCP",
"CLS",
"First Contentful Paint",
"Largest Contentful Paint",
"Cumulative Layout Shift",
"webperformance",
"perfmatters",
"metrics"
],
"author": "gotomi",
"license": "Apache-2.0",
"dependencies": {
"commander": "^12.1.0",
"googleapis": "^144.0.0",
"prepend-http": "4.0.0",
"table": "^6.8.2"
},
"devDependencies": {
"eslint": "^9.10.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1"
}
}