Ghost/ghost/adapter-manager/package.json

36 lines
852 B
JSON
Raw Normal View History

{
"name": "@tryghost/adapter-manager",
"version": "0.1.4",
"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": {
2020-04-22 14:10:04 +03:00
"@types/mocha": "7.0.2",
"@types/sinon": "9.0.0",
2020-04-27 03:15:38 +03:00
"mocha": "7.1.2",
"should": "13.2.3",
2020-04-08 14:49:03 +03:00
"sinon": "9.0.2",
2020-04-22 14:10:04 +03:00
"typescript": "3.8.3"
},
"dependencies": {
"@tryghost/errors": "^0.1.3"
}
}