forked from jedrivisser/fido2-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.31 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
{
"name": "fido2-lib",
"version": "2.3.0",
"description": "A library for performing FIDO 2.0 / WebAuthn functionality",
"main": "index.js",
"types": "./types/index.d.ts",
"scripts": {
"test": "istanbul cover _mocha",
"docs": "jsdoc -c ./.jsdoc-conf.json",
"publish-docs": "gh-pages --repo https://$GH_TOKEN@github.com/apowers313/fido2-lib.git --dist docs"
},
"keywords": [
"webauthn",
"authentication",
"fido",
"fido2",
"web authentication",
"u2f",
"server"
],
"author": "Adam Powers",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/apowers313/fido2-lib"
},
"bugs": {
"url": "https://github.com/apowers313/fido2-lib/issues",
"email": "apowers@ato.ms"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"docdash": "^0.4.0",
"fido2-helpers": "^1.7.2",
"gh-pages": "^0.12.0",
"istanbul": "^1.1.0-alpha.1",
"istanbul-coveralls": "^1.0.3",
"jsdoc": "^3.5.5",
"mocha": "^2.5.3",
"mockery": "^2.0.0",
"sinon": "^1.17.6"
},
"dependencies": {
"asn1js": "^2.0.18",
"cbor": "^4.0.0",
"cose-to-jwk": "^1.1.0",
"jwk-to-pem": "^2.0.0",
"node-jose": "^1.0.0",
"@peculiar/webcrypto": "^1.0.1",
"pkijs": "=2.1.58",
"psl": "^1.1.24"
}
}