48fd5ca8cb
- linting is done as a separate step in CI and it's a git hook upon pushing locally, so we don't need to run it after tests
28 lines
694 B
JSON
28 lines
694 B
JSON
{
|
|
"name": "@tryghost/email-analytics-service",
|
|
"version": "0.0.0",
|
|
"repository": "https://github.com/TryGhost/Publishing/tree/main/packages/email-analytics-service",
|
|
"private": true,
|
|
"author": "Ghost Foundation",
|
|
"license": "MIT",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"dev": "echo \"Implement me!\"",
|
|
"test": "NODE_ENV=testing c8 --all --reporter text --reporter cobertura mocha './test/**/*.test.js'",
|
|
"lint": "eslint . --ext .js --cache"
|
|
},
|
|
"files": [
|
|
"index.js",
|
|
"lib"
|
|
],
|
|
"devDependencies": {
|
|
"mocha": "10.0.0",
|
|
"should": "13.2.3",
|
|
"sinon": "14.0.0"
|
|
},
|
|
"dependencies": {
|
|
"@tryghost/debug": "^0.1.9",
|
|
"lodash": "^4.17.20"
|
|
}
|
|
}
|