forked from ArminTamzarian/node-calendar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
22 lines (22 loc) · 1.07 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
{
"name" : "node-calendar",
"description" : "A fairly straightforward port of the Python calendar package with extensions where appropriate.",
"url" : "https://github.com/ArminTamzarian/node-calendar",
"keywords" : ["calendar", "python", "year", "month", "day", "locale", "isleap", "leapdays", "monthrange", "setlocale", "noconflict", "timegm", "weekday", "getfirstweekday", "setfirstweekday", "iterweekdays", "itermonthdates", "itermonthdays", "itermonthdays2", "monthdatescalendar", "monthdayscalendar", "monthdays2calendar", "yeardatescalendar", "yeardayscalendar", "yeardays2calendar"],
"author" : "Armin Tamzarian <tamzarian1989@gmail.com>",
"scripts" : {
"test" : "mocha -R spec test/test-*.js"
},
"lib" : ".",
"main" : "./node-calendar.js",
"repository" : {
"type" : "git",
"url" : "https://github.com/ArminTamzarian/node-calendar"
},
"version" : "0.1.4",
"license" : "MIT",
"devDependencies" : {
"mocha" : "1.13.0",
"cldr" : ">=1.0.2"
}
}