package.json 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "read-package-tree",
  3. "version": "5.3.1",
  4. "description": "Read the contents of node_modules.",
  5. "main": "rpt.js",
  6. "directories": {
  7. "test": "test"
  8. },
  9. "dependencies": {
  10. "read-package-json": "^2.0.0",
  11. "readdir-scoped-modules": "^1.0.0",
  12. "util-promisify": "^2.1.0"
  13. },
  14. "devDependencies": {
  15. "archy": "^1.0.0",
  16. "mkdirp": "^0.5.1",
  17. "tacks": "^1.2.1",
  18. "tap": "^12.7.0"
  19. },
  20. "scripts": {
  21. "test": "tap test/*.js --100",
  22. "snap": "TAP_SNAPSHOT=1 tap test/*.js --100",
  23. "preversion": "npm test",
  24. "postversion": "npm publish",
  25. "postpublish": "git push origin --follow-tags"
  26. },
  27. "repository": {
  28. "type": "git",
  29. "url": "https://github.com/npm/read-package-tree"
  30. },
  31. "author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)",
  32. "license": "ISC",
  33. "bugs": {
  34. "url": "https://github.com/npm/read-package-tree/issues"
  35. },
  36. "homepage": "https://github.com/npm/read-package-tree",
  37. "files": [
  38. "rpt.js",
  39. "realpath.js"
  40. ],
  41. "tap": {
  42. "100": true
  43. }
  44. }