Ghost/ghost/adapter-manager/package.json

36 lines
853 B
JSON
Raw Normal View History

{
"name": "@tryghost/adapter-manager",
"version": "0.1.11",
"repository": "https://github.com/TryGhost/Ghost-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.0.3",
"@types/sinon": "9.0.8",
2020-10-17 00:24:13 +03:00
"mocha": "8.2.0",
"should": "13.2.3",
2020-10-28 12:04:46 +03:00
"sinon": "9.2.1",
2020-10-27 02:25:01 +03:00
"typescript": "4.0.5"
},
"dependencies": {
"@tryghost/errors": "^0.2.4"
}
}