-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.71 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
58
59
60
61
62
63
64
65
66
{
"name": "scroll-padlock",
"type": "module",
"author": {
"name": "memob0x",
"url": "https://github.com/memob0x"
},
"description": "Locks elements scroll handling scrollbar gaps and iOS Safari with CSS variables",
"main": "./dist/scroll-padlock.umd.js",
"module": "./dist/scroll-padlock.js",
"types": "./dist/scroll-padlock.d.ts",
"version": "3.0.0",
"license": "MIT",
"repository": "https://github.com/memob0x/scroll-padlock.git",
"keywords": [
"scroll",
"lock",
"body",
"document",
"prevent",
"freeze",
"disable",
"lightbox",
"modal",
"overlay",
"ios",
"safari",
"apple",
"iphone",
"ipad",
"ipod",
"css",
"css-variables",
"scrollbar",
"scrollbars",
"scrollbar-width",
"gap",
"compensation",
"desktop",
"tablet"
],
"scripts": {
"lint": "npx eslint",
"build": "node ./build.js",
"test:unit": "node --test --experimental-test-coverage --test-reporter=spec --test-reporter=lcov --test-reporter=./reporter.js --test-reporter-destination=stdout --test-reporter-destination=lcov.info --test-reporter-destination=stdout ./src/*.spec.js",
"test:e2e": "node --test ./e2e/*.spec.js",
"test": "npm run test:unit && npm run test:e2e",
"prepare": "husky install"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"eslint": "^9.19.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsdoc": "^50.6.3",
"globals": "^15.14.0",
"husky": "^9.1.7",
"jsdoc": "^4.0.4",
"jsdom": "^26.0.0",
"puppeteer": "^24.1.1",
"resemblejs": "^5.0.0",
"rollup": "^4.34.0",
"rollup-plugin-gzip": "^4.0.1",
"sharp": "^0.33.5",
"typescript": "^5.7.3"
}
}