1
0
mirror of https://github.com/comatory/fb2iCal synced 2024-12-27 08:52:58 +01:00
Facebook-Events-iCal-Converter/package.json
2019-10-21 20:44:34 +02:00

36 lines
903 B
JSON

{
"name": "facebook-events-ical-converter",
"version": "1.0.0",
"description": "App that converts events on Facebook event page to iCal file.",
"main": "lib/index.js",
"scripts": {
"start": "node lib/index.js",
"start:dev": "PORT=3000 nodemon lib/index.js",
"start:dev:inspect": "PORT=3000 nodemon --inspect lib/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"facebook",
"event",
"ical",
"convert",
"download"
],
"author": "Ondrej Synacek <ondrejsynacek@fastmail.com>",
"license": "ISC",
"dependencies": {
"body-parser": "^1.19.0",
"cheerio": "^1.0.0-rc.3",
"dayjs": "^1.8.16",
"ejs": "^2.7.1",
"express": "^4.17.1",
"express-rate-limit": "^5.0.0",
"ics": "^2.18.0",
"request": "^2.88.0",
"serve-favicon": "^2.5.0"
},
"devDependencies": {
"nodemon": "^1.19.3"
}
}