package.json 845 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "name": "@tufjs/models",
  3. "version": "3.0.1",
  4. "description": "TUF metadata models",
  5. "main": "dist/index.js",
  6. "types": "dist/index.d.ts",
  7. "files": [
  8. "dist"
  9. ],
  10. "scripts": {
  11. "build": "tsc --build",
  12. "clean": "rm -rf dist && rm tsconfig.tsbuildinfo",
  13. "test": "jest"
  14. },
  15. "repository": {
  16. "type": "git",
  17. "url": "git+https://github.com/theupdateframework/tuf-js.git"
  18. },
  19. "keywords": [
  20. "tuf",
  21. "security",
  22. "update"
  23. ],
  24. "author": "bdehamer@github.com",
  25. "license": "MIT",
  26. "bugs": {
  27. "url": "https://github.com/theupdateframework/tuf-js/issues"
  28. },
  29. "homepage": "https://github.com/theupdateframework/tuf-js/tree/main/packages/models#readme",
  30. "dependencies": {
  31. "@tufjs/canonical-json": "2.0.0",
  32. "minimatch": "^9.0.5"
  33. },
  34. "engines": {
  35. "node": "^18.17.0 || >=20.5.0"
  36. }
  37. }