Ghost/ghost/email-content-generator/package.json

33 lines
889 B
JSON
Raw Normal View History

{
"name": "@tryghost/email-content-generator",
"version": "0.1.2",
"repository": "https://github.com/TryGhost/Utils/tree/main/packages/email-content-generator",
"author": "Ghost Foundation",
"license": "MIT",
"main": "index.js",
"scripts": {
"dev": "echo \"Implement me!\"",
"test": "NODE_ENV=testing c8 --all --check-coverage --reporter text --reporter cobertura mocha './test/**/*.test.js'",
"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",
"posttest": "yarn lint"
},
"files": [
"index.js",
"lib"
],
"publishConfig": {
"access": "public"
},
"devDependencies": {
2022-05-16 07:56:38 +03:00
"c8": "7.11.3",
"mocha": "10.0.0",
"should": "13.2.3",
2022-05-09 03:14:50 +03:00
"sinon": "14.0.0"
},
"dependencies": {
"html-to-text": "^5.1.1"
}
}