mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-13 01:17:27 +03:00
ffa101b550
refs https://github.com/TryGhost/Arch/issues/16 - This package is meant to hold Domain Events associated with Post model/entity. The very first one here is PostsBulkDestroyedEvent needed to signal bulk destroy action completion from the posts service.
33 lines
918 B
JSON
33 lines
918 B
JSON
{
|
|
"name": "@tryghost/posts-service",
|
|
"version": "0.0.0",
|
|
"repository": "https://github.com/TryGhost/Ghost/tree/main/packages/posts-service",
|
|
"author": "Ghost Foundation",
|
|
"private": true,
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"dev": "echo \"Implement me!\"",
|
|
"test:unit": "NODE_ENV=testing c8 --all --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.14.0",
|
|
"mocha": "10.2.0",
|
|
"sinon": "15.2.0"
|
|
},
|
|
"dependencies": {
|
|
"@tryghost/errors": "1.2.24",
|
|
"@tryghost/nql": "0.11.0",
|
|
"@tryghost/post-events": "0.0.0",
|
|
"@tryghost/tpl": "0.1.24",
|
|
"bson-objectid": "2.0.4"
|
|
}
|
|
}
|