package.json 933 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "array-initial",
  3. "description": "Get all but the last element or last n elements of an array.",
  4. "version": "1.1.0",
  5. "homepage": "https://github.com/jonschlinkert/array-initial",
  6. "author": {
  7. "name": "Jon Schlinkert",
  8. "url": "https://github.com/jonschlinkert"
  9. },
  10. "repository": {
  11. "type": "git",
  12. "url": "git://github.com/jonschlinkert/array-initial.git"
  13. },
  14. "bugs": {
  15. "url": "https://github.com/jonschlinkert/array-initial/issues"
  16. },
  17. "license": "MIT",
  18. "main": "index.js",
  19. "engines": {
  20. "node": ">=0.10.0"
  21. },
  22. "scripts": {
  23. "test": "mocha -R spec"
  24. },
  25. "devDependencies": {
  26. "mocha": "^2.0.0",
  27. "should": "^11.2.1"
  28. },
  29. "dependencies": {
  30. "array-slice": "^1.0.0",
  31. "is-number": "^4.0.0"
  32. },
  33. "keywords": [
  34. "array",
  35. "fast",
  36. "first",
  37. "initial",
  38. "javascript",
  39. "js",
  40. "last",
  41. "rest",
  42. "util",
  43. "utility",
  44. "utils"
  45. ]
  46. }