-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 852 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 852 Bytes
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
{
"name": "scroll-jank-profiler",
"version": "0.1.0",
"description": "Profile scroll-animation performance in headless Chrome and fail CI when a scroll budget is violated.",
"type": "module",
"private": true,
"license": "MIT",
"author": "css-scroll-driven",
"engines": {
"node": ">=20.0.0"
},
"bin": {
"scroll-jank-profiler": "./bin/scroll-jank-profiler.mjs"
},
"exports": {
".": "./src/index.js"
},
"files": [
"bin",
"src",
"scroll-budget.example.json"
],
"scripts": {
"test": "node --test \"tests/**/*.test.mjs\"",
"demo:serve": "python3 -m http.server 8000 --directory demo"
},
"dependencies": {
"puppeteer-core": "^24.0.0"
},
"keywords": [
"scroll",
"performance",
"jank",
"scroll-driven-animations",
"profiling",
"cdp",
"puppeteer-core"
]
}