Ghost/ghost/stripe/package.json
Fabien "egg" O'Carroll e672369311 Lowered codecoverage lines threshold for stripe
no-issue

The new tests added do not meet the default minimum of 90% and we do not
want to dedicate more time to writing tests for this package right now.
2022-02-15 10:57:40 +02:00

36 lines
898 B
JSON

{
"name": "@tryghost/members-stripe-service",
"version": "0.7.0",
"repository": "https://github.com/TryGhost/Members/tree/main/packages/stripe",
"author": "Ghost Foundation",
"license": "MIT",
"main": "index.js",
"scripts": {
"dev": "echo \"Implement me!\"",
"test": "NODE_ENV=testing c8 --lines 60 --reporter text --reporter cobertura --check-coverage mocha './test/**/*.test.js'",
"lint": "eslint . --ext .js --cache",
"posttest": "yarn lint"
},
"files": [
"index.js",
"lib"
],
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@babel/eslint-parser": "7.16.5",
"c8": "7.11.0",
"mocha": "9.1.3",
"rewire": "^6.0.0",
"should": "13.2.3",
"sinon": "11.1.2"
},
"dependencies": {
"@tryghost/debug": "^0.1.4",
"@tryghost/errors": "1.2.0",
"leaky-bucket": "^2.2.0",
"stripe": "^8.174.0"
}
}