Ghost/ghost/members-api/package.json

44 lines
1010 B
JSON
Raw Normal View History

{
"name": "@tryghost/members-api",
"version": "0.25.1",
"repository": "https://github.com/TryGhost/Members/tree/master/packages/members-api",
"author": "Ghost Foundation",
"license": "MIT",
"main": "index.js",
"scripts": {
"dev": "echo \"Implement me!\"",
"test": "NODE_ENV=testing mocha './test/**/*.test.js'",
"lint": "eslint '**/*.js'",
"posttest": "yarn lint"
},
"files": [
"index.js",
"lib",
"gateway"
],
"devDependencies": {
"@types/stripe": "7.13.24",
2020-04-27 17:17:30 +03:00
"jsdom": "15.2.1",
2020-07-22 13:40:19 +03:00
"mocha": "6.2.3",
2020-03-17 14:55:48 +03:00
"nock": "12.0.3",
"should": "13.2.3",
2019-09-30 03:36:16 +03:00
"sinon": "7.5.0"
},
"dependencies": {
"@tryghost/magic-link": "^0.4.12",
"bluebird": "^3.5.4",
"body-parser": "^1.19.0",
2019-10-14 03:23:55 +03:00
"cookies": "^0.8.0",
"express": "^4.16.4",
"ghost-ignition": "^4.0.0",
"got": "^9.6.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.11",
"node-jose": "^1.1.3",
"stripe": "^7.4.0"
},
"publishConfig": {
"access": "public"
}
}