package.json 783 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "name": "npm-bundled",
  3. "version": "1.1.2",
  4. "description": "list things in node_modules that are bundledDependencies, or transitive dependencies thereof",
  5. "main": "index.js",
  6. "repository": {
  7. "type": "git",
  8. "url": "git+https://github.com/npm/npm-bundled.git"
  9. },
  10. "author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)",
  11. "license": "ISC",
  12. "devDependencies": {
  13. "mkdirp": "^0.5.1",
  14. "mutate-fs": "^1.1.0",
  15. "rimraf": "^2.6.1",
  16. "tap": "^12.0.1"
  17. },
  18. "scripts": {
  19. "test": "tap test/*.js -J --100",
  20. "preversion": "npm test",
  21. "postversion": "npm publish",
  22. "postpublish": "git push origin --all; git push origin --tags"
  23. },
  24. "files": [
  25. "index.js"
  26. ],
  27. "dependencies": {
  28. "npm-normalize-package-bin": "^1.0.1"
  29. }
  30. }