-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
67 lines (67 loc) · 1.92 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
{
"name": "jquery-formatdatetime",
"title": "jQuery Format Date/Time",
"description": "A jQuery plugin that converts a date object to a supplied format. It was forked from the jQuery UI DatePicker module to support time formatting as well as the original date formatting.",
"keywords": [
"format",
"date",
"time",
"datetime"
],
"version": "1.1.6",
"author": {
"name": "Adam Gschwender",
"email": "[email protected]",
"url": "http://gschwa.com/"
},
"maintainers": [
{
"name": "Adam Gschwender",
"email": "[email protected]",
"url": "http://gschwa.com/"
},
{
"name": "Rafael Gonzaque",
"email": "[email protected]",
"url": "http://www.iamrgon.com/"
}
],
"licenses": [
{
"type": "MIT",
"url": "https://github.com/agschwender/jquery.formatDateTime/blob/master/MIT-LICENSE.txt"
},
{
"type": "GPLv2",
"url": "https://github.com/agschwender/jquery.formatDateTime/blob/master/GPL-LICENSE.txt"
}
],
"bugs": "https://github.com/agschwender/jquery.formatDateTime/issues",
"homepage": "https://github.com/agschwender/jquery.formatDateTime",
"docs": "https://github.com/agschwender/jquery.formatDateTime/blob/master/README.md",
"download": "https://github.com/agschwender/jquery.formatDateTime/archive/master.zip",
"repository": {
"type": "git",
"url": "git://github.com/agschwender/jquery.formatDateTime.git"
},
"main": "jquery.formatDateTime",
"files": [
"jquery.formatDateTime.js",
"README.md"
],
"engines": {
"node": ">=0.8"
},
"scripts": {
"test": "grunt test --verbose"
},
"devDependencies": {
"grunt": "~0.4.1",
"grunt-contrib-concat": "~0.3.0",
"grunt-contrib-jasmine": "~0.5.1",
"grunt-contrib-jshint": "~0.6.2",
"grunt-contrib-uglify": "~0.2.2",
"grunt-contrib-watch": "~0.5.1",
"grunt-jquerymanifest": "~0.1.2"
}
}