-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
61 lines (61 loc) · 1.42 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
{
"name": "webauthn",
"version": "0.2.0",
"description": "W3C Web Authentication API Relying Party for Node.js and Express",
"main": "src/Webauthn.js",
"scripts": {
"test": "mocha",
"coverage": "nyc --reporter=lcov --report-dir coverage _mocha"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/strangerlabs/webauthn.git"
},
"keywords": [
"webauthn",
"authentication",
"fido2",
"ctap2",
"password-replacement",
"express",
"expressjs",
"express-middleware"
],
"author": "Stranger Labs, Inc.",
"contributors": [
{
"name": "Alex Pfeiffer",
"email": "[email protected]",
"url": "https://github.com/Terrahop"
},
{
"name": "Greg Linklater",
"email": "[email protected]",
"url": "https://github.com/EternalDeiwos"
},
{
"name": "Christian Smith",
"email": "[email protected]",
"url": "https://github.com/christiansmith"
}
],
"license": "MIT",
"bugs": {
"url": "https://gitlab.com/strangerlabs/webauthn/issues"
},
"homepage": "https://gitlab.com/strangerlabs/webauthn",
"dependencies": {
"@fidm/x509": "^1.2.1",
"base64url": "^3.0.1",
"cbor": "^4.1.5",
"express": "^4.16.4",
"iso-3166-1": "^1.1.0",
"level": "^5.0.1",
"lodash": "^4.17.14"
},
"devDependencies": {
"mocha": "^7.0.0",
"nyc": "^15.0.0",
"sinon": "^8.0.4"
}
}