Ghost/ghost/stripe/package.json
Daniel Lockyer 48fd5ca8cb
Removed posttest linting step
- 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
2022-07-21 10:09:36 +02:00

36 lines
923 B
JSON

{
"name": "@tryghost/members-stripe-service",
"version": "0.0.0",
"repository": "https://github.com/TryGhost/Members/tree/main/packages/stripe",
"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": {
"c8": "7.12.0",
"mocha": "10.0.0",
"rewire": "6.0.0",
"should": "13.2.3",
"sinon": "14.0.0"
},
"dependencies": {
"@tryghost/debug": "^0.1.4",
"@tryghost/domain-events": "^0.0.0",
"@tryghost/errors": "^1.2.5",
"@tryghost/logging": "^2.0.5",
"@tryghost/member-events": "^0.0.0",
"leaky-bucket": "^2.2.0",
"lodash": "^4.17.21",
"stripe": "^8.174.0"
}
}