package.json 910 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "name": "@npmcli/installed-package-contents",
  3. "version": "1.0.7",
  4. "description": "Get the list of files installed in a package in node_modules, including bundled dependencies",
  5. "author": "Isaac Z. Schlueter <i@izs.me> (https://izs.me)",
  6. "main": "index.js",
  7. "bin": {
  8. "installed-package-contents": "index.js"
  9. },
  10. "license": "ISC",
  11. "scripts": {
  12. "test": "tap",
  13. "snap": "tap",
  14. "preversion": "npm test",
  15. "postversion": "npm publish",
  16. "postpublish": "git push origin --follow-tags"
  17. },
  18. "tap": {
  19. "check-coverage": true,
  20. "color": true
  21. },
  22. "devDependencies": {
  23. "require-inject": "^1.4.4",
  24. "tap": "^14.11.0"
  25. },
  26. "dependencies": {
  27. "npm-bundled": "^1.1.1",
  28. "npm-normalize-package-bin": "^1.0.1"
  29. },
  30. "repository": "git+https://github.com/npm/installed-package-contents",
  31. "files": [
  32. "index.js"
  33. ],
  34. "engines": {
  35. "node": ">= 10"
  36. }
  37. }