package.json 593 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "name": "invert-kv",
  3. "version": "1.0.0",
  4. "description": "Invert the key/value of an object. Example: {foo: 'bar'} → {bar: 'foo'}",
  5. "license": "MIT",
  6. "repository": "sindresorhus/invert-kv",
  7. "author": {
  8. "name": "Sindre Sorhus",
  9. "email": "sindresorhus@gmail.com",
  10. "url": "http://sindresorhus.com"
  11. },
  12. "engines": {
  13. "node": ">=0.10.0"
  14. },
  15. "scripts": {
  16. "test": "mocha"
  17. },
  18. "files": [
  19. "index.js"
  20. ],
  21. "keywords": [
  22. "object",
  23. "obj",
  24. "key",
  25. "value",
  26. "val",
  27. "kv",
  28. "invert"
  29. ],
  30. "devDependencies": {
  31. "mocha": "*"
  32. }
  33. }