package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. {
  2. "name": "is-equal-shallow",
  3. "description": "Does a shallow comparison of two objects, returning false if the keys or values differ.",
  4. "version": "0.1.3",
  5. "homepage": "https://github.com/jonschlinkert/is-equal-shallow",
  6. "author": {
  7. "name": "Jon Schlinkert",
  8. "url": "https://github.com/jonschlinkert"
  9. },
  10. "repository": {
  11. "type": "git",
  12. "url": "git://github.com/jonschlinkert/is-equal-shallow.git"
  13. },
  14. "bugs": {
  15. "url": "https://github.com/jonschlinkert/is-equal-shallow/issues"
  16. },
  17. "license": "MIT",
  18. "files": [
  19. "index.js"
  20. ],
  21. "main": "index.js",
  22. "engines": {
  23. "node": ">=0.10.0"
  24. },
  25. "scripts": {
  26. "test": "mocha"
  27. },
  28. "dependencies": {
  29. "is-primitive": "^2.0.0"
  30. },
  31. "devDependencies": {
  32. "mocha": "*",
  33. "should": "*"
  34. },
  35. "keywords": [
  36. "compare",
  37. "comparison",
  38. "equal",
  39. "equals",
  40. "is",
  41. "is-equal",
  42. "key",
  43. "object",
  44. "same",
  45. "shallow",
  46. "value"
  47. ],
  48. "verbiage": {
  49. "related": {
  50. "description": "Other object utils:",
  51. "list": ["is-plain-object", "isobject", "for-in", "for-own", "clone-deep"]
  52. }
  53. }
  54. }