package.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. "name": "@springprojects/spring-security-webauthn",
  3. "version": "1.0.0-alpha.9",
  4. "description": "WebAuthN JS library for Spring Security",
  5. "license": "ASL-2.0",
  6. "author": "????",
  7. "contributors": [
  8. "Rob Winch <rwinch@users.noreply.github.com>",
  9. "Daniel Garnier-Moiroux <git@garnier.wf>"
  10. ],
  11. "repository": "github:spring-projects/spring-security",
  12. "bugs": {
  13. "url": "https://github.com/spring-projects/spring-security/issues"
  14. },
  15. "engines": {
  16. "node": ">=20.0.0"
  17. },
  18. "scripts": {
  19. "test": "mocha",
  20. "check": "npm test && npm run lint",
  21. "test:watch": "mocha --watch --parallel",
  22. "assemble": "esbuild lib/index.js --bundle --outfile=build/dist/spring-security-webauthn.js",
  23. "build": "npm run check && npm run assemble",
  24. "lint": "eslint",
  25. "format": "npm run lint -- --fix"
  26. },
  27. "main": "lib/index.js",
  28. "files": [
  29. "lib"
  30. ],
  31. "keywords": [
  32. "Spring Security",
  33. "WebAuthn",
  34. "passkeys"
  35. ],
  36. "devDependencies": {
  37. "@eslint/js": "^9.6.0",
  38. "@types/sinon": "^17.0.3",
  39. "chai": "~4.3",
  40. "esbuild": "^0.25.0",
  41. "eslint": "^9.6.0",
  42. "eslint-config-prettier": "^9.1.0",
  43. "eslint-plugin-prettier": "^5.1.3",
  44. "globals": "^15.8.0",
  45. "mocha": "~10.8",
  46. "prettier": "^3.3.2",
  47. "prettier-eslint": "~15.0",
  48. "sinon": "^18.0.0"
  49. },
  50. "type": "module"
  51. }