-
Notifications
You must be signed in to change notification settings - Fork 121
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.6 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.6 KB
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": "fido2-lib",
"version": "3.5.9",
"description": "A library for performing FIDO 2.0 / WebAuthn functionality",
"type": "module",
"main": "dist/main.cjs",
"module": "lib/main.js",
"types": "./types/main.d.ts",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"build": "npm run test && npx rollup -c rollup.config.js && npm run test:dist",
"test": "c8 mocha",
"test:dist": "npx mocha \"test/dist/**/*.mjs\"",
"report": "c8 report --reporter=text-lcov > coverage.lcov",
"docs": "jsdoc -c ./.jsdoc-conf.json",
"publish-docs": "gh-pages --repo https://$GH_TOKEN@github.com/webauthn-open-source/fido2-lib.git --dist docs"
},
"keywords": [
"webauthn",
"authentication",
"fido",
"fido2",
"web authentication",
"u2f",
"server"
],
"author": "Adam Powers, JamesCullum, Hexagon & Contributors",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/webauthn-open-source/fido2-lib.git"
},
"bugs": {
"url": "https://github.com/webauthn-open-source/fido2-lib/issues"
},
"devDependencies": {
"c8": "^11.0.0",
"chai": "^6.2.1",
"chai-as-promised": "^8.0.2",
"docdash": "^2.0.2",
"eslint": "^10.0.0",
"gh-pages": "^6.3.0",
"jsdoc": "^4.0.5",
"mocha": "^11.7.5",
"rollup": "^4.53.1"
},
"dependencies": {
"@hexagon/base64": "^2.0.4",
"@peculiar/webcrypto": "~1.5.0",
"asn1js": "~3.0.7",
"cbor-x": "~1.6.3",
"jose": "^6.2.1",
"pkijs": "~3.3.3",
"punycode.js": "^2.3.1",
"tldts": "~7.0.25"
},
"engines": {
"node": ">=10"
}
}