package.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. {
  2. "name": "array-last",
  3. "description": "Get the last or last n elements in an array.",
  4. "version": "1.3.0",
  5. "homepage": "https://github.com/jonschlinkert/array-last",
  6. "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
  7. "contributors": [
  8. "Ben Drucker (http://www.bendrucker.me)",
  9. "Blaine Bublitz (https://twitter.com/BlaineBublitz)",
  10. "Jon Schlinkert (http://twitter.com/jonschlinkert)",
  11. "Stephen A. Wilson (https://github.com/SpyMaster356)"
  12. ],
  13. "repository": "jonschlinkert/array-last",
  14. "bugs": {
  15. "url": "https://github.com/jonschlinkert/array-last/issues"
  16. },
  17. "license": "MIT",
  18. "files": [
  19. "index.js"
  20. ],
  21. "main": "index.js",
  22. "engines": {
  23. "node": ">=0.10.0"
  24. },
  25. "scripts": {
  26. "test": "mocha"
  27. },
  28. "dependencies": {
  29. "is-number": "^4.0.0"
  30. },
  31. "devDependencies": {
  32. "ansi-bold": "^0.1.1",
  33. "array-slice": "^1.0.0",
  34. "benchmarked": "^1.1.1",
  35. "gulp-format-md": "^1.0.0",
  36. "matched": "^1.0.2",
  37. "mocha": "^3.5.0"
  38. },
  39. "keywords": [
  40. "array",
  41. "fast",
  42. "first",
  43. "initial",
  44. "javascript",
  45. "js",
  46. "last",
  47. "rest",
  48. "util",
  49. "utility",
  50. "utils"
  51. ],
  52. "verb": {
  53. "run": true,
  54. "toc": false,
  55. "layout": "default",
  56. "tasks": [
  57. "readme"
  58. ],
  59. "plugins": [
  60. "gulp-format-md"
  61. ],
  62. "related": {
  63. "list": [
  64. "arr-union",
  65. "array-unique",
  66. "array-xor"
  67. ]
  68. },
  69. "reflinks": [
  70. "verb"
  71. ],
  72. "lint": {
  73. "reflinks": true
  74. }
  75. }
  76. }