package.json 679 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "invert-kv",
  3. "version": "3.0.1",
  4. "description": "Invert the key/value of an object. Example: `{foo: 'bar'}` → `{bar: 'foo'}`",
  5. "license": "MIT",
  6. "repository": "sindresorhus/invert-kv",
  7. "funding": "https://github.com/sindresorhus/invert-kv?sponsor=1",
  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. "object",
  25. "key",
  26. "value",
  27. "invert",
  28. "keys",
  29. "values"
  30. ],
  31. "devDependencies": {
  32. "ava": "^1.4.1",
  33. "tsd": "^0.7.2",
  34. "xo": "^0.24.0"
  35. }
  36. }