forked from Sjeiti/TinySort
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.66 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.66 KB
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
{
"name": "tinysort",
"filename": "tinysort.min.js",
"version": "2.3.6",
"description": "TinySort is a small script that sorts HTML elements. It sorts by text- or attribute value, or by that of one of it's children.",
"main": "dist/tinysort.js",
"license": "MIT",
"author": "Ron Valstar <ron@ronvalstar.nl> (http://www.ronvalstar.nl/)",
"homepage": "http://tinysort.sjeiti.com/",
"dependencies": {},
"repository": {
"type": "git",
"url": "https://github.com/Sjeiti/TinySort.git"
},
"keywords": [
"sort",
"element",
"HTMLElement",
"Node",
"list",
"table",
"dom",
"html"
],
"devDependencies": {
"express": "^4.13.4",
"jscs": "^2.11.0",
"jsdoc": "~3.3.0-alpha11",
"jsdoc-parse": "^1.2.1",
"jsdom": "^8.2.0",
"jshint": "^2.9.1",
"mkdirp": "~0.5.0",
"next-version": "^0.9.3",
"node-qunit-phantomjs": "^1.4.0",
"open": "0.0.5",
"promisify-node": "^0.4.0",
"rimraf": "^2.5.2",
"serve-static": "^1.10.2",
"uglify-js": "^2.6.2"
},
"autoupdate": {
"source": "git",
"target": "git://github.com/Sjeiti/TinySort.git",
"basePath": "dist",
"files": [
"tinysort.js",
"tinysort.min.js",
"tinysort.charorder.js",
"tinysort.charorder.min.js",
"jquery.tinysort.js",
"jquery.tinysort.min.js"
]
},
"scripts": {
"build": "node task/build test uglify",
"jscs": "jscs ./src/",
"jshint": "jshint ./src/",
"uglify": "node task/uglify",
"version": "next-version package.json bower.json src/tinysort.js src/jquery.tinysort.js src/tinysort.charorder.js",
"test": "node task/test",
"doc": "node task/jsdoc"
}
}