package.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "tuf-js",
  3. "version": "1.1.6",
  4. "description": "JavaScript implementation of The Update Framework (TUF)",
  5. "main": "dist/index.js",
  6. "types": "dist/index.d.ts",
  7. "scripts": {
  8. "build": "tsc --build",
  9. "clean": "rm -rf dist",
  10. "test": "jest"
  11. },
  12. "repository": {
  13. "type": "git",
  14. "url": "git+https://github.com/theupdateframework/tuf-js.git"
  15. },
  16. "files": [
  17. "dist"
  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/client#readme",
  30. "devDependencies": {
  31. "@tufjs/repo-mock": "1.3.1",
  32. "@types/debug": "^4.1.7",
  33. "@types/make-fetch-happen": "^10.0.1",
  34. "@types/node": "^20.1.1",
  35. "nock": "^13.3.1",
  36. "typescript": "^5.0.4"
  37. },
  38. "dependencies": {
  39. "@tufjs/models": "1.0.4",
  40. "debug": "^4.3.4",
  41. "make-fetch-happen": "^11.1.0"
  42. },
  43. "engines": {
  44. "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
  45. }
  46. }