This repository has been archived by the owner on Mar 3, 2023. It is now read-only.
forked from webauthn-open-source/fido2-lib
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
56 lines (56 loc) · 1.38 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": "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": "nyc mocha",
"report": "nyc report --reporter=text-lcov > coverage.lcov",
"codecov": "codecov -e TRAVIS_NODE_VERSION",
"docs": "jsdoc -c ./.jsdoc-conf.json",
"publish-docs": "gh-pages --repo https://[email protected]/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": "[email protected]"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"codecov": "^3.5.0",
"docdash": "^0.4.0",
"fido2-helpers": "^1.7.2",
"gh-pages": "^0.12.0",
"jsdoc": "^3.5.5",
"mocha": "^6.1.4",
"mockery": "^2.0.0",
"nyc": "^14.1.1",
"sinon": "^7.3.2"
},
"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",
"node-webcrypto-ossl": "^1.0.48",
"pkijs": "=2.1.58",
"psl": "^1.1.24"
}
}