package.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. {
  2. "name": "unset-value",
  3. "description": "Delete nested properties from an object using dot notation.",
  4. "version": "1.0.0",
  5. "homepage": "https://github.com/jonschlinkert/unset-value",
  6. "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
  7. "contributors": [
  8. "<wtgtybhertgeghgtwtg@gmail.com> (https://github.com/wtgtybhertgeghgtwtg)",
  9. "Jon Schlinkert <jon.schlinkert@sellside.com> (http://twitter.com/jonschlinkert)"
  10. ],
  11. "repository": "jonschlinkert/unset-value",
  12. "bugs": {
  13. "url": "https://github.com/jonschlinkert/unset-value/issues"
  14. },
  15. "license": "MIT",
  16. "files": [
  17. "index.js"
  18. ],
  19. "main": "index.js",
  20. "engines": {
  21. "node": ">=0.10.0"
  22. },
  23. "scripts": {
  24. "test": "mocha"
  25. },
  26. "dependencies": {
  27. "has-value": "^0.3.1",
  28. "isobject": "^3.0.0"
  29. },
  30. "devDependencies": {
  31. "gulp-format-md": "^0.1.11",
  32. "mocha": "*",
  33. "should": "*"
  34. },
  35. "keywords": [
  36. "del",
  37. "delete",
  38. "key",
  39. "object",
  40. "omit",
  41. "prop",
  42. "property",
  43. "remove",
  44. "unset",
  45. "value"
  46. ],
  47. "verb": {
  48. "related": {
  49. "list": [
  50. "get-value",
  51. "get-values",
  52. "omit-value",
  53. "put-value",
  54. "set-value",
  55. "union-value",
  56. "upsert-value"
  57. ]
  58. },
  59. "toc": false,
  60. "layout": "default",
  61. "tasks": [
  62. "readme"
  63. ],
  64. "plugins": [
  65. "gulp-format-md"
  66. ],
  67. "lint": {
  68. "reflinks": true
  69. }
  70. }
  71. }