-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 1.09 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
{
"devDependencies": {
"sass": "^1.71.1",
"typescript": "^5.3.3",
"uglify-js": "^3.17.4"
},
"name": "tabled",
"description": "An HTML table plugin designed to enhance the usability and responsiveness of tables on web pages on an accesible way.",
"version": "1.0.0",
"main": "./dist/tabled.min.js",
"directories": {
"doc": "docs"
},
"scripts": {
"start": "parcel docs/examples.html",
"tsc": "tsc",
"uglify": "uglifyjs --compress --mangle -o ./dist/tabled.min.js -- ./dist/tabled.js",
"sass-themes": "sass ./src/styles/tabled_theme.scss ./dist/theme.css --style compressed",
"sass": "sass ./src/styles/tabled_core.scss ./dist/styles.css --style compressed",
"build": "npm run tsc && npm run sass && npm run sass-themes && npm run uglify"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Lullabot/tabled"
},
"author": "Lullabot",
"contributors": [
"javi-er"
],
"license": "GPL-2.0-or-later",
"bugs": {
"url": "https://github.com/Lullabot/tabled/issues"
},
"homepage": "https://github.com/Lullabot/tabled#readme"
}