mirror of
https://github.com/comatory/fb2iCal
synced 2024-12-27 08:52:58 +01:00
31 lines
726 B
JSON
31 lines
726 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": "PORT=80 node lib/index.js",
|
|
"start:dev": "nodemon 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",
|
|
"ejs": "^2.7.1",
|
|
"express": "^4.17.1",
|
|
"node-html-parser": "^1.1.16",
|
|
"puppeteer": "^1.20.0"
|
|
},
|
|
"devDependencies": {
|
|
"nodemon": "^1.19.3"
|
|
}
|
|
}
|