-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
49 lines (49 loc) · 1.08 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
{
"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.5",
"license": "MIT",
"devDependencies": {
"cldr": "^4.8.0",
"mocha": "^5.1.1",
"uglify-js": "^3.3.24"
}
}