2
1
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2023-12-13 21:00:40 +01:00
Ghost/ghost/update-check-service/package.json
2021-06-23 17:01:28 +00:00

32 lines
795 B
JSON

{
"name": "@tryghost/update-check-service",
"version": "0.1.0",
"repository": "https://github.com/TryGhost/Core/tree/main/packages/update-check-service",
"author": "Ghost Foundation",
"license": "MIT",
"main": "./lib/update-check-service.js",
"exports": "./lib/update-check-service.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": "9.0.1",
"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"
}
}