Ghost/ghost/update-check-service/package.json
Naz ba3c351aad Added missing module dependencies for update-check-service
refs TryGhost/Team#728

- These are dependancies that have to come with the update check service
- Used exact same versions of Bluebird/moment/lodash as in current
TryGhost/Ghost main
2021-06-02 18:25:15 +04:00

32 lines
730 B
JSON

{
"name": "@tryghost/update-check-service",
"version": "0.0.0",
"repository": "https://github.com/TryGhost/Core/tree/master/packages/update-check-service",
"author": "Ghost Foundation",
"license": "MIT",
"main": "index.js",
"scripts": {
"dev": "echo \"Implement me!\"",
"test": "NODE_ENV=testing mocha './test/**/*.test.js'",
"lint": "eslint . --ext .js --cache",
"posttest": "yarn lint"
},
"files": [
"lib"
],
"publishConfig": {
"access": "public"
},
"devDependencies": {
"mocha": "8.4.0",
"should": "13.2.3",
"sinon": "11.1.1"
},
"dependencies": {
"@tryghost/errors": "^0.2.11",
"bluebird": "3.7.2",
"lodash": "4.17.21",
"moment": "2.24.0"
}
}