Ghost/ghost/payments/package.json

33 lines
878 B
JSON
Raw Normal View History

{
"name": "@tryghost/members-payments",
"version": "0.0.0",
"private": true,
"author": "Ghost Foundation",
"license": "MIT",
"main": "index.js",
"scripts": {
"dev": "echo \"Implement me!\"",
"test:unit": "NODE_ENV=testing c8 --all --reporter text --reporter cobertura -- mocha --reporter dot './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": {
2023-09-01 16:32:29 +03:00
"c8": "8.0.1",
2022-12-12 16:20:22 +03:00
"mocha": "10.2.0",
"should": "13.2.3",
2023-07-11 16:11:02 +03:00
"sinon": "15.2.0"
},
"dependencies": {
"@tryghost/domain-events": "0.0.0",
2024-07-30 17:14:06 +03:00
"@tryghost/errors": "1.3.5",
"@tryghost/members-offers": "0.0.0",
"@tryghost/tiers": "0.0.0"
}
}