package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. {
  2. "name": "omit-keys",
  3. "description": "Return a copy of an object without the given keys.",
  4. "version": "0.1.0",
  5. "homepage": "https://github.com/jonschlinkert/omit-keys",
  6. "author": {
  7. "name": "Jon Schlinkert",
  8. "url": "https://github.com/jonschlinkert"
  9. },
  10. "repository": {
  11. "type": "git",
  12. "url": "git://github.com/jonschlinkert/omit-keys.git"
  13. },
  14. "bugs": {
  15. "url": "https://github.com/jonschlinkert/omit-keys/issues"
  16. },
  17. "licenses": [
  18. {
  19. "type": "MIT",
  20. "url": "https://github.com/jonschlinkert/omit-keys/blob/master/LICENSE-MIT"
  21. }
  22. ],
  23. "main": "index.js",
  24. "engines": {
  25. "node": ">=0.10.0"
  26. },
  27. "scripts": {
  28. "test": "mocha -R spec"
  29. },
  30. "devDependencies": {
  31. "verb-tag-jscomments": ">= 0.2.0",
  32. "verb": ">= 0.2.6",
  33. "mocha": "*"
  34. },
  35. "keywords": [
  36. "JavaScript",
  37. "Lo-Dash",
  38. "Underscore",
  39. "js",
  40. "key",
  41. "lodash",
  42. "object",
  43. "omit",
  44. "property",
  45. "remove",
  46. "util",
  47. "utilities",
  48. "utils"
  49. ],
  50. "dependencies": {
  51. "array-difference": "0.0.1",
  52. "isobject": "^0.2.0"
  53. }
  54. }