f5045b9bf7
fixes https://github.com/TryGhost/Team/issues/2308 - Still has some missing pieces, but mostly works. - Uses new handlebars template for emails - When sending emails with the new email stability flag enabled, one test email is now sent via the default smtp ghost mailer.
40 lines
1.1 KiB
JSON
40 lines
1.1 KiB
JSON
{
|
|
"name": "@tryghost/email-service",
|
|
"version": "0.0.0",
|
|
"repository": "https://github.com/TryGhost/Ghost/tree/main/packages/email-service",
|
|
"author": "Ghost Foundation",
|
|
"private": true,
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"dev": "echo \"Implement me!\"",
|
|
"test:unit": "NODE_ENV=testing c8 --all --reporter text --reporter cobertura mocha './test/**/*.test.js'",
|
|
"test": "yarn test:unit",
|
|
"lint:code": "eslint *.js lib/ --ext .js --cache",
|
|
"lint": "yarn lint:code && yarn lint:test",
|
|
"lint:test": "eslint -c test/.eslintrc.js test/ --ext .js --cache"
|
|
},
|
|
"files": [
|
|
"index.js",
|
|
"lib"
|
|
],
|
|
"devDependencies": {
|
|
"c8": "7.12.0",
|
|
"mocha": "10.1.0",
|
|
"should": "13.2.3",
|
|
"sinon": "14.0.2"
|
|
},
|
|
"dependencies": {
|
|
"@tryghost/errors": "1.2.18",
|
|
"@tryghost/tpl": "0.1.19",
|
|
"bson-objectid": "2.0.4",
|
|
"@tryghost/email-events": "0.0.0",
|
|
"moment-timezone": "0.5.23",
|
|
"handlebars": "4.7.7",
|
|
"@tryghost/kg-default-cards": "5.18.5",
|
|
"@tryghost/color-utils": "0.1.21",
|
|
"@tryghost/html-to-plaintext": "0.0.0",
|
|
"juice": "8.1.0",
|
|
"cheerio": "0.22.0"
|
|
}
|
|
}
|