-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
57 lines (57 loc) · 1.32 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
48
49
50
51
52
53
54
55
56
57
{
"name": "web-vitals-element",
"version": "1.3.6",
"description": "",
"main": "dist/web-vitals-element.js",
"exports": {
".": {
"import": "./dist/web-vitals-element.min.js"
},
"./styled": {
"import": "./dist/web-vitals-element.styled.min.js"
}
},
"scripts": {
"dev:server": "live-server .",
"dev:bundle": "rollup -cw",
"dev": "run-p dev:*",
"bundle": "NODE_ENV=production rollup -c",
"prepublish": "NODE_ENV=production rollup -c && rollup -c"
},
"type": "module",
"files": [
"dist/**"
],
"repository": {
"type": "git",
"url": "git+https://github.com/stefanjudis/web-vitals-element.git"
},
"keywords": [
"web-vitals",
"performance",
"metrics",
"CLS",
"FCP",
"FID",
"LCP",
"TTFB"
],
"author": "stefan judis <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/stefanjudis/web-vitals-element/issues"
},
"homepage": "https://github.com/stefanjudis/web-vitals-element#readme",
"devDependencies": {
"@rollup/plugin-node-resolve": "^13.0.0",
"live-server": "^1.2.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.3.5",
"rollup": "^2.52.3",
"rollup-plugin-postcss": "^4.0.0",
"rollup-plugin-terser": "^7.0.2"
},
"dependencies": {
"web-vitals": "^2.0.1"
}
}