package.json 1.2 KB

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