Ghost/ghost/mw-api-version-mismatch/package.json
Daniel Lockyer f51226e5fb Organized package dependencies
- cleaned up unused dependencies
- adds missing dependencies that are used in the code
- this should help us be more explicit about the dependencies a package
  uses
2022-08-18 11:55:49 +02:00

30 lines
791 B
JSON

{
"name": "@tryghost/mw-api-version-mismatch",
"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 --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": {
"@tryghost/errors": "1.2.15",
"c8": "7.12.0",
"mocha": "10.0.0",
"sinon": "14.0.0"
},
"dependencies": {
"@tryghost/extract-api-key": "0.0.0"
}
}