Socket
Socket
Sign inDemoInstall

cozy-ical

Package Overview
Dependencies
8
Maintainers
2
Versions
52
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.1.19 to 1.1.20

16

package.json
{
"name": "cozy-ical",
"version": "1.1.19",
"version": "1.1.20",
"description": "Cozy-Ical provides ICal Parser, generators and helpers",

@@ -32,16 +32,16 @@ "main": "lib/index",

"dependencies": {
"moment-timezone": "0.4.0",
"moment-timezone": "0.5.3",
"rrule": "2.1.0",
"byline": "4.2.1",
"printit": "0.1.15",
"extend": "2.0.0",
"printit": "0.1.19",
"extend": "3.0.0",
"uuid": "2.0.1"
},
"devDependencies": {
"coffee-script": "1.8.0",
"coffeelint": "1.6.1",
"mocha": "2.0.1",
"should": "4.1.0",
"coffee-script": "1.10.0",
"coffeelint": "1.15.0",
"mocha": "2.4.5",
"should": "8.3.0",
"time": "0.11.4"
}
}

@@ -25,2 +25,3 @@ cozy-ical

var VTodo = require('cozy-ical').VTodo;
var VAlarm = require('cozy-ical').VAlarm;

@@ -34,5 +35,7 @@ var cal = new VCalendar({

var vtodo = new VTodo({
stampDate: date,
startDate: date,
summary: 'jhon',
description: 'my description'
summary: 'john',
description: 'my description',
uid: "9615"
});

@@ -43,2 +46,3 @@

var vevent = new VEvent({
stampDate: startDate,
startDate: startDate,

@@ -51,3 +55,9 @@ endDate: endDate,

vtodo.addAlarm(date);
vtodo.addAlarm({
action: VAlarm.EMAIL_ACTION,
trigger: "-P3D",
description: 'alarm for todo',
summary: 'john',
attendees: []
});
cal.add(vtodo);

@@ -63,19 +73,23 @@ cal.add(vevent);

VERSION:2.0
PRODID:-//Cozy Cloud//NONSGML Cozy Agenda//EN
PRODID:-//Cozy Cloud//NONSGML Cozy Calendar//EN
BEGIN:VTODO
DTSTAMP:20130609T150000Z
SUMMARY:my description
UID:jhon
UID:9615
DTSTAMP:20130609T130000Z
DESCRIPTION:my description
DTSTART:20130609T150000Z
SUMMARY:john
BEGIN:VALARM
ACTION:DISPLAY
REPEAT:1
TRIGGER:20130609T150000Z
ACTION:EMAIL
TRIGGER:-P3D
DESCRIPTION:alarm for todo
SUMMARY:john
END:VALARM
END:VTODO
BEGIN:VEVENT
DESCRIPTION:desc
UID:3615
DTSTAMP:20130609T130000Z
DTSTART:20130609T150000Z
DTEND:20130610T150000Z
DESCRIPTION:desc
LOCATION:loc
UID:3615
END:VEVENT

@@ -82,0 +96,0 @@ END:VCALENDAR

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc