Ghost/ghost/job-manager/package.json

37 lines
862 B
JSON
Raw Normal View History

{
"name": "@tryghost/job-manager",
"private": true,
"version": "0.0.0",
"author": "Ghost Foundation",
"license": "MIT",
"main": "index.js",
"scripts": {
"dev": "echo \"Implement me!\"",
"test:unit": "NODE_ENV=testing c8 --all --reporter text --reporter cobertura mocha './test/**/*.test.js'",
"test": "yarn test:unit",
"lint": "eslint . --ext .js --cache"
},
"files": [
"index.js",
"lib"
],
"devDependencies": {
"@sinonjs/fake-timers": "10.0.2",
2023-02-17 01:15:50 +03:00
"c8": "7.13.0",
2022-09-13 19:27:09 +03:00
"date-fns": "2.29.3",
2021-04-16 15:28:10 +03:00
"delay": "5.0.0",
2022-12-12 16:20:22 +03:00
"mocha": "10.2.0",
2021-04-16 15:28:10 +03:00
"should": "13.2.3",
2023-03-13 05:36:20 +03:00
"sinon": "15.0.2"
},
"dependencies": {
"@breejs/later": "4.1.0",
"@tryghost/errors": "1.2.24",
2023-02-27 20:40:33 +03:00
"@tryghost/logging": "2.4.1",
"bree": "6.5.0",
"cron-validate": "1.4.5",
2023-01-03 21:08:59 +03:00
"fastq": "1.15.0",
"p-wait-for": "3.2.0"
}
}