Ghost/ghost/slack-notifications/package.json

32 lines
939 B
JSON
Raw Permalink Normal View History

{
"name": "@tryghost/slack-notifications",
"version": "0.0.0",
"repository": "https://github.com/TryGhost/Ghost/tree/main/packages/slack-notifications",
"author": "Ghost Foundation",
"private": true,
"main": "index.js",
"scripts": {
"dev": "echo \"Implement me!\"",
"test:unit": "NODE_ENV=testing TZ=UTC c8 --all --check-coverage --100 --reporter text --reporter cobertura -- mocha --reporter dot './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": {
2023-09-01 16:32:29 +03:00
"c8": "8.0.1",
"mocha": "10.2.0",
2023-07-11 16:11:02 +03:00
"sinon": "15.2.0"
},
"dependencies": {
2024-07-30 17:14:06 +03:00
"@tryghost/errors": "1.3.5",
"@tryghost/validator": "0.2.14",
"@tryghost/version": "0.1.30",
"got": "9.6.0"
}
}