-
Notifications
You must be signed in to change notification settings - Fork 253
/
package.json
78 lines (78 loc) · 2.46 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "simple-datatables",
"version": "9.2.1",
"description": "A lightweight, dependency-free JavaScript HTML table plugin.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"jsdelivr": "dist/umd/simple-datatables.js",
"unpkg": "dist/umd/simple-datatables.js",
"module": "dist/module.js",
"style": "dist/style.css",
"scripts": {
"test": "mocha",
"test_server": "node test/server.mjs",
"lint": "eslint src/ docs/demos/ test/",
"pre-commit": "eslint --fix src/ docs/demos/ test/",
"build": "npm run build_js && npm run build_js_umd && npm run build_css && npm run build_demos",
"build_js": "rollup -c",
"build_js_umd": "browserify dist/index.js --standalone simpleDatatables -o dist/umd/simple-datatables.js",
"build_css": "shx cp -R src/css/* dist/",
"build_demos": "npm run build_demos_js && shx cp -R src/css docs/demos/dist/",
"build_demos_js": "rollup -c rollup.demos.config.mjs",
"postbuild_demos": "shx cp -r dist/umd/simple-datatables.js docs/demos/dist/umd.js",
"prepare": "npm run build"
},
"pre-commit": [
"pre-commit"
],
"repository": {
"type": "git",
"url": "git+https://github.com/fiduswriter/simple-datatables.git"
},
"keywords": [
"DataTable",
"DataTables",
"table",
"html table",
"filter",
"sort"
],
"author": "Johannes Wilm",
"license": "LGPL-3.0",
"bugs": {
"url": "https://github.com/fiduswriter/simple-datatables/issues"
},
"homepage": "https://github.com/fiduswriter/simple-datatables#readme",
"devDependencies": {
"@babel/core": "^7.24.4",
"@html-eslint/eslint-plugin": "^0.24.1",
"@html-eslint/parser": "^0.24.1",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/node": "^20.12.7",
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.6.0",
"browserify": "^17.0.0",
"chromedriver": "*",
"eslint": "^8.56.0",
"eslint-plugin-htm": "^0.6.0",
"eslint-plugin-html": "^8.1.0",
"express": "^4.19.2",
"get-port": "^7.1.0",
"mocha": "^10.4.0",
"mocha-each": "^2.0.1",
"pre-commit": "^1.2.2",
"rollup": "^4.14.1",
"rollup-plugin-dts": "^6.1.0",
"selenium-webdriver": "^4.19.0",
"shx": "^0.3.4",
"tslib": "^2.6.2",
"typescript": "^5.4.5"
},
"dependencies": {
"dayjs": "^1.11.10",
"diff-dom": "^5.1.3"
}
}