forked from adamgibbons/ics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.23 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
50
51
52
53
54
55
56
{
"name": "ics",
"version": "3.2.0",
"description": "iCal (ics) file generator",
"exports": {
"types": "./index.d.ts",
"default": "./dist/index.js"
},
"main": "./dist/index.js",
"types": "index.d.ts",
"scripts": {
"start": "mocha --require @babel/register --watch --recursive",
"test": "mocha --require @babel/register --recursive",
"build": "rm -r dist; gulp build"
},
"repository": {
"type": "git",
"url": "https://github.com/adamgibbons/ics.git"
},
"keywords": [
"ical",
"ics",
"calendar",
"icalendar",
"generator",
"date",
"date-time",
"events",
"alarms"
],
"author": "Adam Gibbons <[email protected]> (http://agibbons.com/)",
"license": "ISC",
"bugs": {
"url": "https://github.com/adamgibbons/ics/issues"
},
"homepage": "https://github.com/adamgibbons/ics",
"devDependencies": {
"@babel/core": "^7.6.2",
"@babel/preset-env": "^7.6.2",
"@babel/register": "^7.6.2",
"chai": "^4.2.0",
"dayjs": "^1.8.33",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"mocha": "^9.1.3",
"yargs-parser": ">=13.1.2"
},
"dependencies": {
"nanoid": "^3.1.23",
"yup": "^1.2.0"
},
"files": [
"dist/",
"index.d.ts"
]
}