mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-24 06:35:49 +03:00
bc5b8109e6
refs https://github.com/TryGhost/Team/issues/1306
- This removes the limitation described in commit ff46449ad6
- The only edge case is that when a publication changes their timezone, it will have maximum 24 hours where the member last_seen_at could be incorrect
33 lines
804 B
JSON
33 lines
804 B
JSON
{
|
|
"name": "@tryghost/members-events-service",
|
|
"version": "0.0.0",
|
|
"repository": "https://github.com/TryGhost/Members/tree/main/packages/members-events-service",
|
|
"author": "Ghost Foundation",
|
|
"license": "MIT",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"dev": "echo \"Implement me!\"",
|
|
"test": "NODE_ENV=testing c8 --all --check-coverage mocha './test/**/*.test.js'",
|
|
"lint": "eslint . --ext .js --cache",
|
|
"posttest": "yarn lint"
|
|
},
|
|
"files": [
|
|
"index.js",
|
|
"lib"
|
|
],
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"devDependencies": {
|
|
"c8": "7.11.0",
|
|
"mocha": "9.2.1",
|
|
"should": "13.2.3",
|
|
"sinon": "13.0.1"
|
|
},
|
|
"dependencies": {
|
|
"@tryghost/domain-events": "^0.1.7",
|
|
"@tryghost/member-events": "^0.3.5",
|
|
"moment-timezone": "^0.5.34"
|
|
}
|
|
}
|