-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 805 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 805 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
{
"name": "jquery-table-fixed-header",
"version": "1.2.0",
"type": "module",
"description": "A jQuery plugin to make table header fixed on the top when scrolling down.",
"main": "dist/index.js",
"types": "src/type/public.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/mjpclab/jquery-table-fixed-header.git"
},
"keywords": [
"jquery",
"table",
"fixed",
"header"
],
"scripts": {
"build": "sh build.sh"
},
"author": "MJ PC Lab",
"license": "ISC",
"dependencies": {
"jquery": "*"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.2",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-terser": "^0.4.3",
"@types/jquery": "^3.5.16",
"rollup": "^3.25.3",
"typescript": "^5.1.6"
}
}