ics-generator
Advanced tools
Comparing version 1.0.1 to 1.0.3
@@ -8,2 +8,7 @@ // ---------------------------------------------------------------------------- | ||
const _ = require('underscore') | ||
const IcsUtils = require('./lib/_icsUtils') | ||
const IcsAttendee = require('./lib/attendee') | ||
const IcsEvent = require('./lib/event') | ||
const params = IcsUtils.filterPropParams("calendar"); | ||
@@ -10,0 +15,0 @@ |
@@ -6,3 +6,3 @@ // ---------------------------------------------------------------------------- | ||
// ---------------------------------------------------------------------------- | ||
const _ = require('underscore') | ||
//track all possible properties and parameters for formatting purposes. | ||
@@ -382,1 +382,3 @@ const allProperties = | ||
} | ||
module.exports = IcsUtils |
@@ -8,2 +8,3 @@ // ---------------------------------------------------------------------------- | ||
// ---------------------------------------------------------------------------- | ||
IcsUtils = require('./_icsUtils') | ||
@@ -54,1 +55,2 @@ const params = IcsUtils.filterPropParams("attendee"); | ||
} | ||
module.exports = IcsAttendee |
@@ -6,2 +6,4 @@ // ---------------------------------------------------------------------------- | ||
// ---------------------------------------------------------------------------- | ||
IcsAttendee = require('./attendee') | ||
IcsUtils = require('./_icsUtils') | ||
@@ -80,1 +82,2 @@ const params = IcsUtils.filterPropParams("event"); | ||
} | ||
module.exports = IcsEvent; |
{ | ||
"name": "ics-generator", | ||
"version": "1.0.1", | ||
"version": "1.0.3", | ||
"description": "Generate RFC-Compliant ICS documents", | ||
@@ -23,3 +23,6 @@ "main": "ics-generator.js", | ||
}, | ||
"homepage": "https://github.com/sunsama/ics-generator#readme" | ||
"homepage": "https://github.com/sunsama/ics-generator#readme", | ||
"dependencies": { | ||
"underscore": "^1.8.3" | ||
} | ||
} |
33962
569
1
+ Addedunderscore@^1.8.3
+ Addedunderscore@1.13.7(transitive)