Ghost/ghost/tiers/package.json

31 lines
877 B
JSON
Raw Normal View History

{
"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 --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"
},
"dependencies": {
2024-05-01 17:51:33 +03:00
"@tryghost/errors": "1.3.2",
2024-04-30 23:04:58 +03:00
"@tryghost/string": "0.2.12",
2024-05-27 16:18:12 +03:00
"@tryghost/tpl": "0.1.30",
"bson-objectid": "2.0.4"
}
}