Ghost/ghost/magic-link/package.json
Fabien O'Carroll fa54dc569e Created @tryghost/magic-link module (#50)
* slimer create magic-link

Created the initial magic-link project

* Added usage section to README

* Installed types and deps for magic-link

* Added tsconfig.json

* Initial commit for magic-link module

* Renamed hello.test.js -> index.test.js

* Added initial basic test

* Removed test util directory

* Updated ecmaVersion for test eslint parserOptions

* Added tests for MagicLink

* Added language to README usage codeblock

* Updated sendMagicLink to return SentMessageInfo

* Updated README

* Updated README usage example

* Fixed types
2019-09-03 11:07:03 +08:00

36 lines
835 B
JSON

{
"name": "@tryghost/magic-link",
"version": "0.0.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.3",
"@types/node": "^12.7.3",
"@types/nodemailer": "^6.2.1",
"mocha": "6.2.0",
"should": "13.2.3",
"sinon": "7.4.1"
},
"dependencies": {
"bluebird": "^3.5.5",
"ghost-ignition": "^3.1.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.15"
}
}