Facebook-Events-iCal-Converter/package.json

48 lines
1.2 KiB
JSON
Raw Normal View History

2019-10-15 09:22:08 +02:00
{
"name": "facebook-events-ical-converter",
2019-12-15 11:01:36 +01:00
"version": "1.1.11",
2019-10-15 09:22:08 +02:00
"description": "App that converts events on Facebook event page to iCal file.",
"main": "lib/index.js",
2019-10-24 21:06:48 +02:00
"engines": {
"npm": "6.11.3",
"node": "10.15.0"
},
2019-10-15 09:22:08 +02:00
"scripts": {
2019-10-15 22:55:12 +02:00
"start": "node lib/index.js",
2019-10-23 15:15:20 +02:00
"start:dev": "NODE_ENV=development PORT=3000 nodemon lib/index.js",
"start:dev:inspect": "NODE_ENV=development PORT=3000 nodemon --inspect lib/index.js",
2020-07-14 11:49:56 +02:00
"test": "jest"
2019-10-15 09:22:08 +02:00
},
"keywords": [
"facebook",
"event",
"ical",
"convert",
"download"
],
"author": "Ondrej Synacek <ondrejsynacek@fastmail.com>",
"license": "ISC",
"dependencies": {
"body-parser": "^1.19.0",
2019-10-15 22:45:03 +02:00
"cheerio": "^1.0.0-rc.3",
"dayjs": "^1.8.16",
2019-10-15 09:22:08 +02:00
"ejs": "^2.7.1",
"express": "^4.17.1",
2019-10-21 20:44:34 +02:00
"express-rate-limit": "^5.0.0",
"express-winston": "^4.0.1",
2019-10-15 22:45:03 +02:00
"ics": "^2.18.0",
2019-10-20 19:30:32 +02:00
"request": "^2.88.0",
"serve-favicon": "^2.5.0",
"winston": "^3.2.1",
"winston-daily-rotate-file": "^4.2.1",
"yargs": "^15.4.1"
2019-10-15 09:22:08 +02:00
},
"devDependencies": {
2020-07-14 11:49:56 +02:00
"chai": "^4.2.0",
"chai-sinon": "^2.8.1",
"jest": "^26.1.0",
"nodemon": "^1.19.3",
"sinon": "^9.0.2"
2019-10-15 09:22:08 +02:00
}
}