Ghost/ghost/magic-link/package.json

36 lines
832 B
JSON
Raw Normal View History

{
"name": "@tryghost/magic-link",
"version": "0.2.0",
"repository": "https://github.com/TryGhost/Members/tree/master/packages/magic-link",
"author": "Ghost Foundation",
"license": "MIT",
"main": "index.js",
"scripts": {
"dev": "echo \"Implement me!\"",
"test": "NODE_ENV=testing mocha './test/**/*.test.js'",
"lint": "eslint . --ext .js --cache",
"posttest": "yarn lint"
},
"files": [
"index.js",
"lib"
],
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/jsonwebtoken": "8.3.4",
"@types/node": "12.7.8",
2019-09-03 11:53:48 +03:00
"@types/nodemailer": "6.2.1",
2019-09-30 03:36:16 +03:00
"mocha": "6.2.1",
"should": "13.2.3",
2019-09-30 03:36:16 +03:00
"sinon": "7.5.0"
},
"dependencies": {
"bluebird": "^3.5.5",
"ghost-ignition": "^3.1.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.15"
}
}