package.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. {
  2. "name": "npm-path",
  3. "version": "2.0.4",
  4. "description": "Get a PATH with all executables available to npm scripts.",
  5. "main": "index.js",
  6. "bin": {
  7. "npm-path": "bin/npm-path"
  8. },
  9. "scripts": {
  10. "clean": "rimraf build-test && (rm *.js || true)",
  11. "prebuild": "npm run clean",
  12. "build": "babel src --out-dir . && babel test --out-dir build-test",
  13. "prepublish": "not-in-publish || npm run build",
  14. "tests-only": "tape build-test -r airbnb-js-shims | faucet",
  15. "pretest": "standard src/* test/* bin/*",
  16. "test": "npm run build && npm run tests-only"
  17. },
  18. "author": "Tim Oxley",
  19. "license": "MIT",
  20. "engines": {
  21. "node": ">=0.8"
  22. },
  23. "devDependencies": {
  24. "airbnb-js-shims": "^1.4.0",
  25. "babel-cli": "^6.26.0",
  26. "babel-preset-airbnb": "^2.4.0",
  27. "babel-register": "^6.26.0",
  28. "faucet": "0.0.1",
  29. "in-publish": "^2.0.0",
  30. "npm": "^3.10.10",
  31. "rimraf": "^2.6.2",
  32. "standard": "^7.1.2",
  33. "tape": "^4.8.0"
  34. },
  35. "dependencies": {
  36. "which": "^1.2.10"
  37. },
  38. "directories": {
  39. "test": "test"
  40. },
  41. "repository": {
  42. "type": "git",
  43. "url": "https://github.com/timoxley/npm-path.git"
  44. },
  45. "keywords": [
  46. "npm",
  47. "run",
  48. "executable"
  49. ],
  50. "bugs": {
  51. "url": "https://github.com/timoxley/npm-path/issues"
  52. },
  53. "homepage": "https://github.com/timoxley/npm-path"
  54. }