Ghost/ghost/email-events/package.json

28 lines
797 B
JSON
Raw Normal View History

{
"name": "@tryghost/email-events",
"version": "0.0.0",
"repository": "https://github.com/TryGhost/Ghost/tree/main/packages/email-events",
"author": "Ghost Foundation",
"private": true,
"main": "index.js",
"scripts": {
"dev": "echo \"Implement me!\"",
"test:unit": "NODE_ENV=testing c8 --all --check-coverage --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": {
"bson-objectid": "2.0.4",
"c8": "7.12.0",
2022-12-12 16:20:22 +03:00
"mocha": "10.2.0",
"sinon": "14.0.2"
},
"dependencies": {}
}