forked from akeonly/ics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.37 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
57
58
59
60
61
62
{
"name": "ics",
"version": "2.0.1",
"description": "iCal (ics) file generator",
"main": "index.js",
"scripts": {
"start": "mocha --compilers js:babel-core/register --watch --recursive",
"test": "mocha --compilers js:babel-core/register --recursive",
"build": "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/)",
"contributors": [
"Green Pioneer <[email protected]>",
"Reda <[email protected]>",
"David Schlachter",
"Andrew Crowell",
"Michael Bina <[email protected]>"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/adamgibbons/ics/issues"
},
"babel": {
"presets": [
"es2015"
]
},
"homepage": "https://github.com/adamgibbons/ics",
"devDependencies": {
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.24.1",
"chai": "^4.1.1",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"mocha": "^3.5.0"
},
"dependencies": {
"joi": "^10.6.0",
"lodash": "^4.17.4",
"moment": "^2.18.1",
"uuid": "^3.1.0"
},
"files": [
"dist/"
]
}