-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.14 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
{
"name": "@aodin/tablesorter",
"version": "1.2.0",
"description": "Native JS tablesorter",
"main": "src/tablesorter.js",
"exports": {
".": "./src/tablesorter.js"
},
"type": "module",
"directories": {
"test": "tests"
},
"scripts": {
"test": "uvu tests",
"fmt": "prettier --write src/tablesorter.js tests/*",
"js": "esbuild src/tablesorter.js --bundle --minify --sourcemap --out-extension:.js=.min.js --outdir=dist/ --global-name=tablesorter --target=es2020",
"css": "sass --load-path=. --style=compressed src/styles.scss ./dist/styles.min.css",
"build": "npm run fmt && npm run js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aodin/tablesorter.git"
},
"keywords": [
"table",
"sort",
"tablesorter",
"native",
"JS"
],
"author": "aodin <aaronoellis@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/aodin/tablesorter/issues"
},
"homepage": "https://github.com/aodin/tablesorter#readme",
"devDependencies": {
"esbuild": "^0.23.0",
"jsdom": "^24.1.0",
"prettier": "^3.3.2",
"sass": "^1.77.6",
"uvu": "^0.5.6"
}
}