forked from adamgibbons/ics
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 1.14 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
{
"name": "ics",
"version": "2.19.0",
"description": "iCal (ics) file generator",
"main": "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 <adam@agibbons.com> (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",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"mocha": "^6.2.1"
},
"dependencies": {
"@hapi/joi": "^17.1.1",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"uuid": "^3.3.3"
},
"files": [
"dist/",
"index.d.ts"
]
}