123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- {
- "name": "@springprojects/spring-security-webauthn",
- "version": "1.0.0-alpha.9",
- "description": "WebAuthN JS library for Spring Security",
- "license": "ASL-2.0",
- "author": "????",
- "contributors": [
- "Rob Winch <rwinch@users.noreply.github.com>",
- "Daniel Garnier-Moiroux <git@garnier.wf>"
- ],
- "repository": "github:spring-projects/spring-security",
- "bugs": {
- "url": "https://github.com/spring-projects/spring-security/issues"
- },
- "engines": {
- "node": ">=20.0.0"
- },
- "scripts": {
- "test": "mocha",
- "check": "npm test && npm run lint",
- "test:watch": "mocha --watch --parallel",
- "assemble": "esbuild lib/index.js --bundle --outfile=build/dist/spring-security-webauthn.js",
- "build": "npm run check && npm run assemble",
- "lint": "eslint",
- "format": "npm run lint -- --fix"
- },
- "main": "lib/index.js",
- "files": [
- "lib"
- ],
- "keywords": [
- "Spring Security",
- "WebAuthn",
- "passkeys"
- ],
- "devDependencies": {
- "@eslint/js": "^9.6.0",
- "@types/sinon": "^17.0.3",
- "chai": "~4.3",
- "esbuild": "^0.23.0",
- "eslint": "^9.6.0",
- "eslint-config-prettier": "^9.1.0",
- "eslint-plugin-prettier": "^5.1.3",
- "globals": "^15.8.0",
- "mocha": "~10.2",
- "prettier": "^3.3.2",
- "prettier-eslint": "~15.0",
- "sinon": "^18.0.0"
- },
- "type": "module"
- }
|