Ghost/ghost/tiers/package.json
Fabien "egg" O'Carroll fbc23a624e Refactored Tiers logic into separate package
refs https://github.com/TryGhost/Team/issues/2078

This pulls the current Tiers logic into its own package, the persistence part of
the work has not been done yet, that will be handled in core, so all bookshelf
model specific stuff is kept together.
2022-10-19 11:05:09 +07:00

31 lines
860 B
JSON

{
"name": "@tryghost/tiers",
"version": "0.0.0",
"repository": "https://github.com/TryGhost/Ghost/tree/main/packages/tiers",
"author": "Ghost Foundation",
"private": true,
"main": "index.js",
"scripts": {
"dev": "echo \"Implement me!\"",
"test:unit": "NODE_ENV=testing c8 --all --check-coverage --reporter text --reporter cobertura mocha './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": {
"c8": "7.12.0",
"mocha": "10.0.0"
},
"dependencies": {
"@tryghost/errors": "1.2.18",
"@tryghost/string": "0.2.1",
"@tryghost/tpl": "0.1.19",
"bson-objectid": "2.0.3"
}
}