package.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. {
  2. "name": "libnpmpublish",
  3. "version": "4.0.2",
  4. "description": "Programmatic API for the bits behind npm publish and unpublish",
  5. "author": "npm Inc. <support@npmjs.com>",
  6. "contributors": [
  7. "Kat Marchán <kzm@zkat.tech>",
  8. "Claudia Hernández <claudia@npmjs.com>"
  9. ],
  10. "main": "index.js",
  11. "files": [
  12. "*.js"
  13. ],
  14. "license": "ISC",
  15. "scripts": {
  16. "eslint": "eslint",
  17. "lint": "npm run eslint -- \"*.js\"",
  18. "lintfix": "npm run lint -- --fix",
  19. "preversion": "npm test",
  20. "postversion": "npm publish",
  21. "prepublishOnly": "git push origin --follow-tags",
  22. "test": "tap",
  23. "posttest": "npm run lint"
  24. },
  25. "tap": {
  26. "check-coverage": true
  27. },
  28. "devDependencies": {
  29. "eslint": "^7.11.0",
  30. "eslint-plugin-import": "^2.22.1",
  31. "eslint-plugin-node": "^11.1.0",
  32. "eslint-plugin-promise": "^4.2.1",
  33. "eslint-plugin-standard": "^4.0.2",
  34. "libnpmpack": "^2.0.0",
  35. "lodash.clonedeep": "^4.5.0",
  36. "nock": "^12.0.2",
  37. "standard": "^14.3.1",
  38. "tap": "^14.10.6"
  39. },
  40. "repository": {
  41. "type": "git",
  42. "url": "https://github.com/npm/libnpmpublish.git"
  43. },
  44. "bugs": "https://github.com/npm/libnpmpublish/issues",
  45. "homepage": "https://npmjs.com/package/libnpmpublish",
  46. "dependencies": {
  47. "normalize-package-data": "^3.0.2",
  48. "npm-package-arg": "^8.1.2",
  49. "npm-registry-fetch": "^11.0.0",
  50. "semver": "^7.1.3",
  51. "ssri": "^8.0.1"
  52. },
  53. "engines": {
  54. "node": ">=10"
  55. }
  56. }