-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathpackage.json
40 lines (40 loc) · 1.44 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
{
"name": "basictable",
"version": "2.0.5",
"description": "Basic Table jQuery and Vanilla JS plugin for simple responsive tables.",
"main": "jquery.basictable.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"compile-js": "terser src/js/basictable.js --output dist/js/basictable.min.js -c -m --comments && terser src/js/basictable.js --output dist/js/basictable.js -b indent_level=2",
"compile-jquery": "terser src/js/jquery.basictable.js --output dist/js/jquery.basictable.min.js -c -m --comments && terser src/js/jquery.basictable.js --output dist/js/jquery.basictable.js -b indent_level=2",
"compile-css": "uglifycss src/css/basictable.css > dist/css/basictable.min.css --ugly-comments && beautify-css src/css/basictable.css dist/css/basictable.css",
"compile": "yarn compile-js && yarn compile-jquery && yarn compile-css",
"lint": "yarn standard src/js/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jerrylow/basictable.git"
},
"keywords": [
"jquery",
"table",
"responsive"
],
"author": "jerrylow",
"license": "MIT",
"bugs": {
"url": "https://github.com/jerrylow/basictable/issues"
},
"homepage": "https://github.com/jerrylow/basictable#readme",
"devDependencies": {
"beautify-css": "^1.0.0",
"standard": "^16.0.3",
"terser": "^5.5.1",
"uglifycss": "^0.0.29"
},
"standard": {
"globals": [
"jQuery"
]
}
}