-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
44 lines (44 loc) · 1013 Bytes
/
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
{
"name": "rfc5545-rrule",
"version": "1.1.1",
"description": "RFC 5545 RRule Library",
"main": "./builds/rrule.cjs.js",
"module": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"pretest": "./scripts/compile.sh",
"test": "qunit -c ./builds/rrule.cjs.js -t builds/test/*.js",
"compile": "./scripts/compile.sh",
"prepublish": "./scripts/compile.sh"
},
"keywords": [
"RRule",
"recurrence",
"RFC",
"2445",
"5545",
"iCal",
"iCalendar",
"calendar",
"repeating",
"dates",
"occurrence",
"time",
"event"
],
"author": "James Bracy <[email protected]> (http://waratuman.com)",
"license": "ISC",
"devDependencies": {
"@types/node": "^7.10.7",
"@types/qunit": "^2.9.0",
"apg": "^3.1.1",
"qunit": "^2.9.2",
"rollup": "^0.41.6",
"tslint": "^5.20.0",
"typescript": "^2.9.2"
},
"repository": "https://github.com/waratuman/rfc5545-rrule",
"dependencies": {
"nearley": "^2.19.0"
}
}