package.json 874 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "npm-which",
  3. "version": "3.0.1",
  4. "description": "Locate a program or locally installed node module's executable",
  5. "main": "index.js",
  6. "bin": {
  7. "npm-which": "bin/npm-which.js"
  8. },
  9. "scripts": {
  10. "test": "node test/index.js | tap-spec"
  11. },
  12. "author": "Tim Oxley",
  13. "license": "MIT",
  14. "engines": {
  15. "node": ">=4.2.0"
  16. },
  17. "dependencies": {
  18. "commander": "^2.9.0",
  19. "npm-path": "^2.0.2",
  20. "which": "^1.2.10"
  21. },
  22. "devDependencies": {
  23. "tap-spec": "^4.1.1",
  24. "tape": "^4.6.0"
  25. },
  26. "directories": {
  27. "test": "test"
  28. },
  29. "repository": {
  30. "type": "git",
  31. "url": "https://github.com/timoxley/npm-which.git"
  32. },
  33. "keywords": [
  34. "npm",
  35. "path",
  36. "executable",
  37. "run"
  38. ],
  39. "bugs": {
  40. "url": "https://github.com/timoxley/npm-which/issues"
  41. },
  42. "homepage": "https://github.com/timoxley/npm-which"
  43. }