You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

package.json 754B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "npm-run-path",
  3. "version": "2.0.2",
  4. "description": "Get your PATH prepended with locally installed binaries",
  5. "license": "MIT",
  6. "repository": "sindresorhus/npm-run-path",
  7. "author": {
  8. "name": "Sindre Sorhus",
  9. "email": "sindresorhus@gmail.com",
  10. "url": "sindresorhus.com"
  11. },
  12. "engines": {
  13. "node": ">=4"
  14. },
  15. "scripts": {
  16. "test": "xo && ava"
  17. },
  18. "files": [
  19. "index.js"
  20. ],
  21. "keywords": [
  22. "npm",
  23. "run",
  24. "path",
  25. "package",
  26. "bin",
  27. "binary",
  28. "binaries",
  29. "script",
  30. "cli",
  31. "command-line",
  32. "execute",
  33. "executable"
  34. ],
  35. "dependencies": {
  36. "path-key": "^2.0.0"
  37. },
  38. "devDependencies": {
  39. "ava": "*",
  40. "xo": "*"
  41. },
  42. "xo": {
  43. "esnext": true
  44. }
  45. }