package.json 856 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "longest",
  3. "description": "Get the longest item in an array.",
  4. "version": "1.0.1",
  5. "homepage": "https://github.com/jonschlinkert/longest",
  6. "author": {
  7. "name": "Jon Schlinkert",
  8. "url": "https://github.com/jonschlinkert"
  9. },
  10. "repository": {
  11. "type": "git",
  12. "url": "https://github.com/jonschlinkert/longest.git"
  13. },
  14. "bugs": {
  15. "url": "https://github.com/jonschlinkert/longest/issues"
  16. },
  17. "license": {
  18. "type": "MIT",
  19. "url": "https://github.com/jonschlinkert/longest/blob/master/LICENSE"
  20. },
  21. "files": [
  22. "index.js"
  23. ],
  24. "main": "index.js",
  25. "engines": {
  26. "node": ">=0.10.0"
  27. },
  28. "scripts": {
  29. "test": "mocha"
  30. },
  31. "devDependencies": {
  32. "fill-range": "^2.1.0",
  33. "mocha": "*"
  34. },
  35. "keywords": [
  36. "array",
  37. "element",
  38. "item",
  39. "long",
  40. "length",
  41. "longest"
  42. ]
  43. }