db696a9272
refs https://github.com/TryGhost/Toolbox/issues/203 - without `--all`, c8 ignores files that should be included in the coverage score but aren't used in tests - this means we have artificially high scores in places where this isn't used - this commit adds `--all` where previously missing - where this fails `--check-coverage`, that has been removed for now
32 lines
797 B
JSON
32 lines
797 B
JSON
{
|
|
"name": "@tryghost/members-analytics-ingress",
|
|
"version": "0.1.10",
|
|
"repository": "https://github.com/TryGhost/Members/tree/main/packages/members-analytics-ingress",
|
|
"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",
|
|
"posttest": "yarn lint"
|
|
},
|
|
"files": [
|
|
"index.js",
|
|
"lib"
|
|
],
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"devDependencies": {
|
|
"c8": "7.11.0",
|
|
"mocha": "9.2.1",
|
|
"should": "13.2.3",
|
|
"sinon": "13.0.1"
|
|
},
|
|
"dependencies": {
|
|
"@tryghost/domain-events": "^0.1.7",
|
|
"@tryghost/member-events": "^0.3.5"
|
|
}
|
|
}
|