-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
50 lines (50 loc) · 1.36 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
{
"name": "jquery-stickytable",
"version": "3.0.0",
"description": "jQuery Sticky Table Headers plugin",
"main": "dist/jquery-stickytable.js",
"module": "dist/jquery-stickytable.esm.js",
"browser": "dist/jquery-stickytable.js",
"unpkg": "dist/jquery-stickytable.js",
"directories": {
"example": "example"
},
"scripts": {
"build": "rollup -c",
"clear": "del-cli dist",
"start": "rollup -c -w",
"compress": "uglifyjs dist/jquery-stickytable.js -o dist/jquery-stickytable.min.js -c -m --comments",
"release": "npm run clear && npm run build && npm run compress",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jpchip/stickytable.git"
},
"keywords": [
"table",
"sticky",
"headers",
"column",
"jquery",
"plugin",
"scroll"
],
"author": "Jared Chapiewsky <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jpchip/stickytable/issues"
},
"homepage": "https://github.com/jpchip/stickytable#readme",
"devDependencies": {
"del-cli": "~1.1.0",
"rollup": "~1.11.3",
"rollup-plugin-commonjs": "~9.3.4",
"rollup-plugin-node-resolve": "~4.2.3",
"rollup-plugin-postcss": "^2.0.3",
"uglify-js": "~3.5.11"
},
"peerDependencies": {
"jQuery": ">=1.12.4"
}
}