Ghost/ghost/mw-error-handler/package.json
Hannah Wolfe b80b90229f Added consistent linting pattern to all packages
refs: https://github.com/TryGhost/Toolbox/issues/188

- some of our older packages used a pattern for linting which missed using test config for linting tests
- we need this to be consistent so that we can add more eslint rules for testing
- two packages also didn't use the lib pattern, which made the lint pattern error - so this was fixed as well
2023-06-13 10:43:29 +01:00

35 lines
927 B
JSON

{
"name": "@tryghost/mw-error-handler",
"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 --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 && yarn lint:test",
"lint:test": "eslint -c test/.eslintrc.js test/ --ext .js --cache"
},
"files": [
"index.js",
"lib"
],
"devDependencies": {
"c8": "7.13.0",
"mocha": "10.2.0",
"should": "13.2.3",
"sinon": "15.0.3"
},
"dependencies": {
"@tryghost/debug": "0.1.24",
"@tryghost/errors": "1.2.24",
"@tryghost/http-cache-utils": "0.1.9",
"@tryghost/tpl": "0.1.24",
"lodash": "4.17.21",
"semver": "7.5.1"
}
}