package.json 718 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "map-obj",
  3. "version": "4.3.0",
  4. "description": "Map object keys and values into a new object",
  5. "license": "MIT",
  6. "repository": "sindresorhus/map-obj",
  7. "funding": "https://github.com/sponsors/sindresorhus",
  8. "author": {
  9. "name": "Sindre Sorhus",
  10. "email": "sindresorhus@gmail.com",
  11. "url": "https://sindresorhus.com"
  12. },
  13. "engines": {
  14. "node": ">=8"
  15. },
  16. "scripts": {
  17. "test": "xo && ava && tsd"
  18. },
  19. "files": [
  20. "index.js",
  21. "index.d.ts"
  22. ],
  23. "keywords": [
  24. "map",
  25. "object",
  26. "key",
  27. "keys",
  28. "value",
  29. "values",
  30. "iterate",
  31. "iterator",
  32. "rename",
  33. "modify",
  34. "deep",
  35. "recurse",
  36. "recursive"
  37. ],
  38. "devDependencies": {
  39. "ava": "^2.0.0",
  40. "tsd": "^0.14.0",
  41. "xo": "^0.24.0"
  42. }
  43. }