暫無描述

package.json 1.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. {
  2. "name": "array-slice",
  3. "description": "Array-slice method. Slices `array` from the `start` index up to, but not including, the `end` index.",
  4. "version": "1.1.0",
  5. "homepage": "https://github.com/jonschlinkert/array-slice",
  6. "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
  7. "repository": "jonschlinkert/array-slice",
  8. "bugs": {
  9. "url": "https://github.com/jonschlinkert/array-slice/issues"
  10. },
  11. "license": "MIT",
  12. "files": [
  13. "index.js"
  14. ],
  15. "main": "index.js",
  16. "engines": {
  17. "node": ">=0.10.0"
  18. },
  19. "scripts": {
  20. "test": "mocha"
  21. },
  22. "devDependencies": {
  23. "gulp-format-md": "^1.0.0",
  24. "mocha": "^3.5.3"
  25. },
  26. "keywords": [
  27. "array",
  28. "javascript",
  29. "js",
  30. "slice",
  31. "util",
  32. "utils"
  33. ],
  34. "verb": {
  35. "toc": false,
  36. "layout": "default",
  37. "tasks": [
  38. "readme"
  39. ],
  40. "plugins": [
  41. "gulp-format-md"
  42. ],
  43. "related": {
  44. "list": [
  45. "arr-flatten",
  46. "array-unique",
  47. "array-xor"
  48. ]
  49. },
  50. "lint": {
  51. "reflinks": true
  52. }
  53. }
  54. }