package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. {
  2. "name": "arr-filter",
  3. "description": "Faster alternative to javascript's native filter method.",
  4. "version": "1.1.2",
  5. "homepage": "https://github.com/jonschlinkert/arr-filter",
  6. "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
  7. "repository": "jonschlinkert/arr-filter",
  8. "bugs": {
  9. "url": "https://github.com/jonschlinkert/arr-filter/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. "dependencies": {
  23. "make-iterator": "^1.0.0"
  24. },
  25. "devDependencies": {
  26. "array-filter": "^1.0.0",
  27. "benchmarked": "^0.2.5",
  28. "chalk": "^1.1.3",
  29. "gulp-format-md": "^0.1.11",
  30. "micromatch": "^2.3.11",
  31. "minimist": "^1.2.0",
  32. "mocha": "^3.2.0"
  33. },
  34. "keywords": [
  35. "arr",
  36. "array",
  37. "collection",
  38. "filter",
  39. "util"
  40. ],
  41. "verb": {
  42. "toc": false,
  43. "layout": "default",
  44. "tasks": [
  45. "readme"
  46. ],
  47. "plugins": [
  48. "gulp-format-md"
  49. ],
  50. "related": {
  51. "list": [
  52. "collection-map",
  53. "arr-map",
  54. "array-each"
  55. ]
  56. },
  57. "lint": {
  58. "reflinks": true
  59. }
  60. }
  61. }