Ghost/ghost/session-service/package.json
Daniel Lockyer efac091357 Re-pinned @types/express to 4.17.x
no issue

- later updates of this package contain different types that we haven't
  changed our code for yet, so I need to revert the pinning to force
  this specific version for now
2021-04-16 13:26:34 +01:00

37 lines
880 B
JSON

{
"name": "@tryghost/session-service",
"version": "0.1.18",
"repository": "https://github.com/TryGhost/Utils/tree/master/packages/session-service",
"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 && tsc"
},
"files": [
"index.js",
"lib"
],
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/express": "4.17.4",
"@types/mocha": "^8.2.2",
"express": "^4.17.1",
"mocha": "^8.3.2",
"should": "^13.2.3",
"sinon": "^10.0.0",
"typescript": "^4.2.4"
},
"dependencies": {
"@tryghost/errors": "^0.2.10"
}
}