-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
83 lines (83 loc) · 2.07 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "passport-magic-link",
"version": "2.1.0",
"description": "Passport JS module for Magic Link authentication",
"main": "index.js",
"files": [
"/lib",
"index.js"
],
"scripts": {
"build": "babel src -d lib",
"dev": "jest --watch",
"precommit": "lint-staged",
"test": "jest",
"coverage": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"prepublish": "npm run build"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add",
"jest --bail --findRelatedTests"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/vinialbano/passport-magic-link.git"
},
"keywords": [
"passport",
"magic",
"link",
"passwordless",
"encryption",
"timestamp",
"two",
"factor",
"authentication",
"2FA"
],
"author": "Vinicius Albano <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/vinialbano/passport-magic-link/issues"
},
"homepage": "https://github.com/vinialbano/passport-magic-link#readme",
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^29.4.3",
"chai": "^4.2.0",
"chai-passport-strategy": "^1.0.1",
"coveralls": "^3.0.2",
"eslint": "^5.14.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jest": "^21.27.2",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^3.1.0",
"husky": "^0.14.3",
"jest": "^25.2.3",
"lint-staged": "^7.3.0"
},
"jest": {
"clearMocks": true,
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"coverageReporters": [
"lcov"
]
},
"dependencies": {
"@babel/polyfill": "^7.0.0",
"@babel/runtime": "^7.3.1",
"jsonwebtoken": "^9.0.0",
"passport-strategy": "^1.0.0"
}
}