{ "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" } }