package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "semver-greatest-satisfied-range",
  3. "version": "1.1.0",
  4. "description": "Find the greatest satisfied semver range from an array of ranges.",
  5. "author": "Gulp Team <team@gulpjs.com> (http://gulpjs.com/)",
  6. "contributors": [
  7. "Blaine Bublitz <blaine.bublitz@gmail.com>"
  8. ],
  9. "repository": "gulpjs/semver-greatest-satisfied-range",
  10. "license": "MIT",
  11. "engines": {
  12. "node": ">= 0.10"
  13. },
  14. "main": "index.js",
  15. "files": [
  16. "index.js",
  17. "LICENSE"
  18. ],
  19. "scripts": {
  20. "lint": "eslint . && jscs index.js test/",
  21. "pretest": "npm run lint",
  22. "test": "mocha --async-only",
  23. "cover": "istanbul cover _mocha --report lcovonly",
  24. "coveralls": "npm run cover && istanbul-coveralls"
  25. },
  26. "dependencies": {
  27. "sver-compat": "^1.5.0"
  28. },
  29. "devDependencies": {
  30. "eslint": "^1.7.3",
  31. "eslint-config-gulp": "^2.0.0",
  32. "expect": "^1.19.0",
  33. "istanbul": "^0.4.3",
  34. "istanbul-coveralls": "^1.0.3",
  35. "jscs": "^2.3.5",
  36. "jscs-preset-gulp": "^1.0.0",
  37. "mocha": "^2.4.5"
  38. },
  39. "keywords": [
  40. "semver",
  41. "range",
  42. "max",
  43. "satisfied",
  44. "range",
  45. "array",
  46. "greatest"
  47. ]
  48. }