-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
37 lines (37 loc) · 1.06 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
{
"name" : "date-recur",
"description": "Create a recurring date and query it to see if it lands on a particular date.",
"version" : "0.3.0",
"author": {
"name":"Andrew Chilton",
"email":"chilts@appsattic.com",
"url":"http://www.chilts.org/"
},
"homepage": "https://github.com/appsattic/node-date-recur",
"contributors": [],
"devDependencies": {
"tap" : "0.1.x"
},
"dependencies" : {
"date-utils" : ">= 1.2.x",
"underscore" : ">= 1.2.x"
},
"main": "./date-recur.js",
"scripts": {
"start": "node ./bin/http-server",
"test": "tap test/*.js"
},
"repository": {
"type": "git",
"url": "git://github.com/appsattic/node-date-recur.git"
},
"bugs" : {
"url" : "http://github.com/appsattic/node-date-recur/issues",
"mail" : "chilts@appsattic.com"
},
"licenses": [{
"type": "MIT",
"url": "http://github.com/appsattic/node-date-recur/raw/master/LICENSE"
}],
"keywords": [ "date", "recur", "query" ]
}