-
Notifications
You must be signed in to change notification settings - Fork 175
/
Copy pathpackage.json
37 lines (37 loc) · 858 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
37
{
"name": "stupid-table-plugin",
"version": "1.1.3",
"description": "Stupidly simple jquery table sorting plugin",
"main": "stupidtable.js",
"scripts": {
"lint": "eslint stupidtable.js",
"build": "minify stupidtable.js > stupidtable.min.js"
},
"directories": {
"example": "examples",
"test": "tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joequery/Stupid-Table-Plugin.git"
},
"devDependencies": {
"eslint": "4.18.2",
"minify": "^3.0.5"
},
"peerDependencies": {
"jquery": ">= 1.7.0"
},
"keywords": [
"table",
"sort",
"jquery"
],
"author": "JoeQuery",
"license": "MIT",
"bugs": {
"url": "https://github.com/joequery/Stupid-Table-Plugin/issues"
},
"homepage": "https://github.com/joequery/Stupid-Table-Plugin#readme",
"dependencies": {}
}