Skip to content

Commit 7df1199

Browse files
committed
publish to npm
1 parent 4fa7165 commit 7df1199

File tree

2 files changed

+37
-2
lines changed

2 files changed

+37
-2
lines changed

README.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
# BS5-DataTables-without-jQuery
22
A simple datatables example for bootstrap 5.3.3 that included searching, searching by column, column sorting, loading from json, autobuilding the table, pagination, row editing, and more, with less than 600 lines of js.
33

4+
## Install via npmjs
5+
```bash
6+
npm i --save @skem9/bs5-datatables
7+
```
8+
49
## Demo:
510
## [CodePen.io Demo](https://codepen.io/Yohn/pen/VwoJrOd)
611

package.json

+32-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,35 @@
11
{
2+
"name": "@skem9/bs5-datatables",
3+
"version": "0.1.0",
4+
"description": "A simple datatables example for bootstrap 5.3.3 that included searching, searching by column, column sorting, loading from json, autobuilding the table, pagination, row editing, and more, with less than 600 lines of js.",
5+
"repository": {
6+
"type": "git",
7+
"url": "git+https://yohn@github.com/Yohn/BS5-DataTables-without-jQuery.git"
8+
},
9+
"type": "commonjs",
10+
"scripts": {
11+
"test": "echo \"no tests yet\""
12+
},
13+
"keywords": [
14+
"bootstrap-5",
15+
"wysiwyg",
16+
"editor",
17+
"bootstrap-5-extra",
18+
"vanilla-js"
19+
],
20+
"author": {
21+
"name": "Yohn",
22+
"url": "https://github.com/Yohn"
23+
},
24+
"license": "MIT",
25+
"bugs": {
26+
"url": "https://github.com/Yohn/BS5-DataTables-without-jQuery/issues"
27+
},
28+
"homepage": "https://github.com/Yohn/BS5-DataTables-without-jQuery",
229
"dependencies": {
330
"@tkrotoff/bootstrap-floating-label": "^0.12.2"
4-
}
5-
}
31+
},
32+
"browserslist": [
33+
"default"
34+
]
35+
}

0 commit comments

Comments
 (0)