package.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "name": "@npmcli/installed-package-contents",
  3. "version": "3.0.0",
  4. "description": "Get the list of files installed in a package in node_modules, including bundled dependencies",
  5. "author": "GitHub Inc.",
  6. "main": "lib/index.js",
  7. "bin": {
  8. "installed-package-contents": "bin/index.js"
  9. },
  10. "license": "ISC",
  11. "scripts": {
  12. "test": "tap",
  13. "snap": "tap",
  14. "lint": "npm run eslint",
  15. "postlint": "template-oss-check",
  16. "template-oss-apply": "template-oss-apply --force",
  17. "lintfix": "npm run eslint -- --fix",
  18. "posttest": "npm run lint",
  19. "eslint": "eslint \"**/*.{js,cjs,ts,mjs,jsx,tsx}\""
  20. },
  21. "devDependencies": {
  22. "@npmcli/eslint-config": "^5.0.0",
  23. "@npmcli/template-oss": "4.23.3",
  24. "tap": "^16.3.0"
  25. },
  26. "dependencies": {
  27. "npm-bundled": "^4.0.0",
  28. "npm-normalize-package-bin": "^4.0.0"
  29. },
  30. "repository": {
  31. "type": "git",
  32. "url": "git+https://github.com/npm/installed-package-contents.git"
  33. },
  34. "files": [
  35. "bin/",
  36. "lib/"
  37. ],
  38. "engines": {
  39. "node": "^18.17.0 || >=20.5.0"
  40. },
  41. "templateOSS": {
  42. "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
  43. "version": "4.23.3",
  44. "publish": true
  45. },
  46. "tap": {
  47. "nyc-arg": [
  48. "--exclude",
  49. "tap-snapshots/**"
  50. ]
  51. }
  52. }