-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
41 lines (41 loc) · 1.1 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
{
"name": "ical-expander",
"version": "3.1.0",
"description": "ICS / iCal / iCalendar parser / expander",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"test": "env TZ=Etc/UTC mocha",
"coverage": "env TZ=Etc/UTC nyc --reporter=lcov --reporter=json-summary mocha",
"update-zones": "wget -O zones.json https://hg.mozilla.org/comm-central/raw-file/tip/calendar/timezones/zones.json && node compile-zones.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mifi/ical-expander.git"
},
"author": "Mikael Finstad <finstaden@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mifi/ical-expander/issues"
},
"homepage": "https://github.com/mifi/ical-expander#readme",
"engines": {
"node": ">=4"
},
"dependencies": {
"ical.js": "^1.2.2"
},
"devDependencies": {
"badge-maker": "^3.3.0",
"env": "0.0.2",
"eslint": "^3.18.0",
"eslint-config-airbnb-base": "^11.1.2",
"eslint-plugin-import": "^2.2.0",
"mocha": "^3.2.0",
"nyc": "^15.1.0"
},
"files": [
"index.js",
"zones-compiled.json"
]
}