-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
51 lines (51 loc) · 1.4 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
{
"name": "floating-scroll",
"version": "3.2.0",
"description": "A lightweight jQuery plugin providing floating scrollbar functionality",
"main": "dist/jquery.floatingscroll.min.js",
"module": "src/jquery.floatingscroll.js",
"style": "dist/jquery.floatingscroll.css",
"files": [
"dist",
"src"
],
"scripts": {
"prepare": "husky install",
"lint": "eslint src/jquery.floatingscroll.js",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rollup -c && cleancss -c ie9 -O2 -o dist/jquery.floatingscroll.css src/jquery.floatingscroll.css"
},
"repository": {
"type": "git",
"url": "https://github.com/Amphiluke/floating-scroll.git"
},
"keywords": [
"scrollbar",
"widget",
"user-interface",
"jquery-plugin",
"ecosystem:jquery"
],
"author": "Amphiluke",
"license": "MIT",
"bugs": {
"url": "https://github.com/Amphiluke/floating-scroll/issues"
},
"homepage": "https://amphiluke.github.io/floating-scroll/",
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.4",
"@eslint/js": "^9.11.1",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-terser": "^0.4.4",
"@stylistic/eslint-plugin-js": "^2.8.0",
"clean-css-cli": "^5.6.3",
"eslint": "^9.11.1",
"globals": "^15.9.0",
"husky": "^9.1.6",
"rollup": "^4.22.4"
},
"peerDependencies": {
"jquery": ">=1.4.3"
}
}