Ghost/ghost/payments/package.json

32 lines
746 B
JSON
Raw Normal View History

{
"name": "@tryghost/members-payments",
"version": "0.1.9",
"repository": "https://github.com/TryGhost/Members/tree/main/packages/payments",
"author": "Ghost Foundation",
"license": "MIT",
"main": "index.js",
"scripts": {
"dev": "echo \"Implement me!\"",
"test": "NODE_ENV=testing c8 --check-coverage mocha './test/**/*.test.js'",
"lint": "eslint . --ext .js --cache",
"posttest": "yarn lint"
},
"files": [
"index.js",
"lib"
],
"publishConfig": {
"access": "public"
},
"devDependencies": {
2022-01-18 11:40:13 +03:00
"c8": "7.11.0",
2022-02-15 15:31:41 +03:00
"mocha": "9.2.0",
"should": "13.2.3",
2022-02-15 15:36:16 +03:00
"sinon": "13.0.1"
},
"dependencies": {
"@tryghost/domain-events": "^0.1.7",
"@tryghost/members-offers": "^0.10.7"
}
}