package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "npm-bundled",
  3. "version": "3.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": "https://github.com/npm/npm-bundled.git"
  9. },
  10. "author": "GitHub Inc.",
  11. "license": "ISC",
  12. "devDependencies": {
  13. "@npmcli/eslint-config": "^4.0.0",
  14. "@npmcli/template-oss": "4.5.1",
  15. "mkdirp": "^1.0.4",
  16. "mutate-fs": "^2.1.1",
  17. "rimraf": "^3.0.2",
  18. "tap": "^16.3.0"
  19. },
  20. "scripts": {
  21. "test": "tap",
  22. "lint": "eslint \"**/*.js\"",
  23. "postlint": "template-oss-check",
  24. "template-oss-apply": "template-oss-apply --force",
  25. "lintfix": "npm run lint -- --fix",
  26. "snap": "tap",
  27. "posttest": "npm run lint"
  28. },
  29. "files": [
  30. "bin/",
  31. "lib/"
  32. ],
  33. "dependencies": {
  34. "npm-normalize-package-bin": "^3.0.0"
  35. },
  36. "engines": {
  37. "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
  38. },
  39. "templateOSS": {
  40. "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
  41. "version": "4.5.1"
  42. },
  43. "tap": {
  44. "nyc-arg": [
  45. "--exclude",
  46. "tap-snapshots/**"
  47. ]
  48. }
  49. }