package.json 899 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "name": "libnpmaccess",
  3. "version": "4.0.3",
  4. "description": "programmatic library for `npm access` commands",
  5. "author": "Kat Marchán <kzm@sykosomatic.org>",
  6. "license": "ISC",
  7. "scripts": {
  8. "preversion": "npm test",
  9. "postversion": "npm publish",
  10. "postpublish": "git push origin --follow-tags",
  11. "lint": "standard",
  12. "test": "tap"
  13. },
  14. "devDependencies": {
  15. "nock": "^12.0.1",
  16. "standard": "^14.3.0",
  17. "tap": "^14.11.0"
  18. },
  19. "repository": {
  20. "type": "git",
  21. "url": "https://github.com/npm/libnpmaccess.git"
  22. },
  23. "bugs": "https://github.com/npm/libnpmaccess/issues",
  24. "homepage": "https://npmjs.com/package/libnpmaccess",
  25. "dependencies": {
  26. "aproba": "^2.0.0",
  27. "minipass": "^3.1.1",
  28. "npm-package-arg": "^8.1.2",
  29. "npm-registry-fetch": "^11.0.0"
  30. },
  31. "engines": {
  32. "node": ">=10"
  33. },
  34. "tap": {
  35. "check-coverage": true
  36. }
  37. }