-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 952 Bytes
/
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
{
"name": "slimtable",
"description": "jQuery plugin to create sortable and pageable table.",
"version": "2.0.1",
"author": "Pekka Harjamäki <[email protected]>",
"homepage": "https://slimtable.mcfish.org",
"license": "MIT",
"keywords": [
"table",
"sorting",
"paging",
"ajax",
"jquery-plugin",
"ecosystem:jquery"
],
"main": "js/slimtable.js",
"repository": {
"type": "git",
"url": "https://github.com/McFizh/slimtable.git"
},
"scripts": {
"test:lint": "eslint src/slimtable.js",
"test:qunit": "grunt test",
"test": "npm run test:lint && npm run test:qunit",
"demoserver": "http-server ./examples"
},
"devDependencies": {
"eslint": "^8.28.0",
"grunt": "^1.5.3",
"grunt-contrib-clean": "^2.0.1",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-qunit": "^10.1.1",
"grunt-contrib-uglify": "^5.2.2",
"http-server": "^14.1.1",
"qunit": "^2.19.3" }
}