Initial commit

This commit is contained in:
Joe Grigg
2025-05-27 16:23:47 +01:00
commit 15599cd83d
11 changed files with 3810 additions and 0 deletions

29
package.json Normal file
View File

@@ -0,0 +1,29 @@
{
"name": "ghost-docker",
"version": "0.0.0",
"repository": "git@github.com:TryGhost/ghost-docker.git",
"author": "Ghost Foundation",
"license": "MIT",
"main": "app.js",
"scripts": {
"dev": "echo \"Implement me!\"",
"test:unit": "NODE_ENV=testing c8 --all --check-coverage --100 --reporter text --reporter cobertura mocha './test/**/*.test.js'",
"test": "yarn test:unit",
"lint:code": "eslint *.js lib/ --ext .js --cache",
"lint": "yarn lint:code",
"preship": "yarn test",
"ship": "STATUS=$(git status --porcelain); echo $STATUS; if [ -z \"$STATUS\" ]; then yarn version && git push --follow-tags; fi"
},
"files": [
"app.js",
"lib"
],
"devDependencies": {
"c8": "10.1.3",
"eslint": "9.27.0",
"eslint-plugin-ghost": "3.4.0",
"mocha": "11.5.0",
"sinon": "20.0.0"
},
"dependencies": {}
}