mailtrain/package.json
Tomas Bures bf69e633c4 Added CSV export of subscribers
Fixed some bugs in subscriptions
Updated some packages to avoid warnings about vulnerabilities
Completed RSS feed campaigns
2018-11-17 02:54:23 +01:00

114 lines
3.3 KiB
JSON

{
"name": "mailtrain",
"private": true,
"version": "2.0.0",
"description": "Self hosted email newsletter app",
"main": "index.js",
"scripts": {
"test": "grunt",
"start": "node index.js",
"sqlinit": "node setup/sql/init.js",
"sqldump": "node setup/sql/dump.js | sed -e '/^\\/\\*.*\\*\\/;$/d' -e 's/.[0-9]\\{4\\}-[0-9][0-9]-[0-9][0-9] [0-9][0-9]:[0-9][0-9]:[0-9][0-9]./NOW()/g' > setup/sql/mailtrain${DUMP_NAME_SUFFIX}.sql",
"sqldrop": "node setup/sql/drop.js",
"sqlgen": "npm run sqldrop && DB_FROM_START=Y npm run sqlinit && npm run sqldump",
"sqldumptest": "NODE_ENV=test DUMP_NAME_SUFFIX=-test npm run sqldump",
"sqlresettest": "NODE_ENV=test npm run sqldrop && NODE_ENV=test npm run sqlinit",
"starttest": "NODE_ENV=test node index.js",
"_e2e": "NODE_ENV=test node test/e2e/index.js",
"e2e": "npm run sqlresettest && npm run _e2e"
},
"repository": {
"type": "git",
"url": "git://github.com/Mailtrain-org/mailtrain.git"
},
"license": "GPL-3.0",
"homepage": "https://mailtrain.org/",
"engines": {
"node": ">=10.0.0"
},
"devDependencies": {
"babel-eslint": "^8.1.2",
"chai": "^4.1.2",
"eslint-config-nodemailer": "^1.2.0",
"grunt": "^1.0.3",
"grunt-cli": "^1.2.0",
"grunt-eslint": "^20.1.0",
"lodash": "^4.17.10",
"mocha": "^5.2.0",
"phantomjs-prebuilt": "^2.1.15",
"selenium-webdriver": "^3.5.0",
"url-pattern": "^1.0.3"
},
"optionalDependencies": {
"posix": "^4.1.2"
},
"dependencies": {
"aws-sdk": "^2.307.0",
"bcrypt-nodejs": "0.0.3",
"bluebird": "^3.5.0",
"body-parser": "^1.18.2",
"bounce-handler": "^7.3.2-fork.2",
"compression": "^1.7.0",
"config": "^1.29.0",
"connect-flash": "^0.1.1",
"cookie-parser": "^1.4.3",
"cors": "^2.8.4",
"crypto": "^1.0.1",
"csurf": "^1.9.0",
"csv-parse": "^1.3.3",
"csv-stringify": "^4.3.1",
"device": "^0.3.8",
"dompurify": "^1.0.2",
"escape-html": "^1.0.3",
"escape-string-regexp": "^1.0.5",
"express": "^4.15.5",
"express-session": "^1.15.5",
"faker": "^4.1.0",
"feedparser-promised": "^1.5.0",
"fs-extra": "^4.0.2",
"fs-extra-promise": "^1.0.1",
"geoip-ultralight": "^0.1.5",
"gettext-parser": "^1.3.0",
"gm": "^1.23.1",
"handlebars": "^4.0.10",
"hbs": "^4.0.1",
"he": "^1.1.1",
"html-to-text": "^3.3.0",
"humanize": "0.0.9",
"isemail": "^2.2.1",
"jsdom": "^9.12.0",
"juice": "^4.3.2",
"knex": "^0.15.2",
"libmime": "^3.1.0",
"mailparser": "^2.0.5",
"memory-cache": "^0.2.0",
"mjml": "^4.2.0",
"moment": "^2.18.1",
"moment-timezone": "^0.5.13",
"morgan": "^1.9.1",
"multer": "^1.3.0",
"mysql2": "^1.3.5",
"node-gettext": "^2.0.0-rc.1",
"node-ipc": "^9.1.1",
"node-mocks-http": "^1.6.5",
"node-object-hash": "^1.2.0",
"nodeify": "^1.0.1",
"nodemailer": "^4.1.1",
"nodemailer-openpgp": "^1.1.0",
"npmlog": "^4.1.2",
"nyc": "^13.1.0",
"openpgp": "^2.6.1",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"premailer-api": "^1.0.4",
"request": "^2.88.0",
"request-promise": "^4.2.2",
"serve-favicon": "^2.4.4",
"shortid": "^2.2.8",
"slugify": "^1.2.8",
"smtp-server": "^3.1.0",
"toml": "^2.3.3",
"try-require": "^1.2.1",
"xmldom": "^0.1.27"
}
}