Ghost/ghost/importer-revue/package.json
Hannah Wolfe 5f90baf6fe
Added Revue Importer (#16012)
refs: https://www.getrevue.co/app/offboard

- Revue is stopping all paid subscriptions on 20th Dec, and shutting down on Jan 18th.
- This update allows Ghost to accept and handle the zip file Revue are providing as an export in Labs > Importer
- It will import posts (as best as we can with the data provided) and subscribers as free members
- At present it doesn't import paid subscribers, as we don't have that info, but you can disconnect Revue from your Stripe account to prevent all your subscriptions being cancelled & there's the option this can be fixed later
- There will be further updates to polish up this tooling - this is just a first pass to try to get something in people's hands

Co-authored-by: Paul Davis <PaulAdamDavis@users.noreply.github.com>
2022-12-15 17:22:54 +00:00

32 lines
946 B
JSON

{
"name": "@tryghost/importer-revue",
"version": "0.0.0",
"repository": "https://github.com/TryGhost/Ghost/tree/main/packages/importer-revue",
"author": "Ghost Foundation",
"private": true,
"main": "index.js",
"scripts": {
"dev": "echo \"Implement me!\"",
"test:unit": "NODE_ENV=testing c8 --all --check-coverage --100 --reporter text --reporter html --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": {
"sinon": "15.0.0"
},
"dependencies": {
"@tryghost/debug": "^0.1.20",
"@tryghost/kg-default-cards": "^5.18.7",
"@tryghost/string": "0.2.2",
"lodash": "^4.17.21",
"papaparse": "^5.3.2",
"simple-dom": "^1.4.0"
}
}