package.json 713 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "name": "array-find",
  3. "version": "1.0.0",
  4. "description": "ES6 Array.find ponyfill. Return the first array element which satisfies a testing function.",
  5. "main": "find.js",
  6. "scripts": {
  7. "test": "tape ./test.js"
  8. },
  9. "repository": {
  10. "type": "git",
  11. "url": "https://github.com/stefanduberg/array-find.git"
  12. },
  13. "keywords": [
  14. "array",
  15. "find",
  16. "ponyfill",
  17. "polyfill",
  18. "es6",
  19. "es2015",
  20. "es 2015"
  21. ],
  22. "author": "Stefan Duberg <stefanduberg@gmail.com>",
  23. "license": "MIT",
  24. "bugs": {
  25. "url": "https://github.com/stefanduberg/array-find/issues"
  26. },
  27. "homepage": "https://github.com/stefanduberg/array-find",
  28. "devDependencies": {
  29. "tape": "^4.0.0"
  30. }
  31. }