Ghost/ghost/errors/package.json
Sam Lord 095d64b449 Switch to ES6 classes for errors, use @tryghost/ignition errors
no issue

Replaces the usage of ghost-ignition with @tryghost/ignition-errors,
and switched to using the more modern ES6 class syntax over the
`.call(this, ...)` syntax used previously in both Ignition and here.
2021-06-17 10:26:19 +01:00

31 lines
680 B
JSON

{
"name": "@tryghost/errors",
"version": "0.2.12",
"repository": "https://github.com/TryGhost/Utils/tree/master/packages/errors",
"author": "Ghost Foundation",
"license": "MIT",
"main": "index.js",
"scripts": {
"dev": "echo \"Implement me!\"",
"test": "NODE_ENV=testing mocha './test/**/*.test.js'",
"lint": "eslint . --ext .js --cache",
"posttest": "yarn lint"
},
"files": [
"index.js",
"lib"
],
"publishConfig": {
"access": "public"
},
"devDependencies": {
"mocha": "9.0.0",
"should": "13.2.3",
"sinon": "11.0.0"
},
"dependencies": {
"@tryghost/ignition-errors": "^0.1.0",
"lodash": "^4.17.21"
}
}