forked from jaredhanson/passport-webauthn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.41 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
{
"name": "@dplabs/passport-webauthn",
"version": "0.9.1",
"description": "WebAuthn authentication strategy for Passport.",
"keywords": [
"passport",
"fido",
"fido2",
"webauthn",
"passkeys",
"yubikey"
],
"author": {
"name": "Daniel Pecos Martinez",
"email": "me@danielpecos.com",
"url": "https://danielpecos.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dplabs/passport-webauthn.git"
},
"bugs": {
"url": "https://github.com/dplabs/passport-webauthn/issues"
},
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "https://opensource.org/licenses/MIT"
}
],
"main": "./lib",
"dependencies": {
"base64url": "^3.0.1",
"cbor": "^8.1.0",
"clone": "^2.1.2",
"cose-to-jwk": "^1.1.0",
"jwk-to-pem": "^2.0.5",
"jws": "^4.0.0",
"passport-strategy": "1.x.x"
},
"devDependencies": {
"chai": "^4.0.0",
"chai-passport-strategy": "3.x.x",
"make-node": "^0.3.0",
"mocha": "^2.0.0",
"sinon": "^11.1.2",
"sinon-chai": "^3.7.0"
},
"scripts": {
"test": "mocha test/*.test.js",
"bump-patch-app-version": "npm version patch --message \"Version %s published [skip ci]\"",
"bump-minor-app-version": "npm version minor --message \"Version %s published [skip ci]\"",
"bump-major-app-version": "npm version major --message \"Version %s published [skip ci]\""
}
}