Ghost/ghost/adapter-manager/package.json

36 lines
850 B
JSON
Raw Normal View History

{
"name": "@tryghost/adapter-manager",
"version": "0.2.14",
"repository": "https://github.com/TryGhost/Utils/tree/master/packages/adapter-manager",
"author": "Ghost Foundation",
"license": "MIT",
"main": "index.js",
"types": "types/index.d.ts",
"scripts": {
"dev": "echo \"Implement me!\"",
"test": "NODE_ENV=testing mocha './test/**/*.test.js'",
"lint": "eslint . --ext .js --cache",
"posttest": "yarn lint",
"pretest": "yarn types",
"types": "rm -r types && yarn tsc"
},
"files": [
"index.js",
"lib"
],
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/mocha": "8.2.3",
"@types/sinon": "10.0.2",
2021-06-09 12:08:29 +03:00
"mocha": "9.0.0",
2021-04-16 15:28:10 +03:00
"should": "13.2.3",
2021-05-25 01:37:15 +03:00
"sinon": "11.0.0",
2021-07-01 04:11:31 +03:00
"typescript": "4.3.5"
},
"dependencies": {
"@tryghost/errors": "^0.2.13"
}
}