package.json 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. {
  2. "name": "set-value",
  3. "description": "Create nested values and any intermediaries using dot notation (`'a.b.c'`) paths.",
  4. "version": "2.0.1",
  5. "homepage": "https://github.com/jonschlinkert/set-value",
  6. "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
  7. "contributors": [
  8. "Jon Schlinkert (http://twitter.com/jonschlinkert)",
  9. "(https://github.com/wtgtybhertgeghgtwtg)",
  10. "Vadim Demedes (https://vadimdemedes.com)"
  11. ],
  12. "repository": "jonschlinkert/set-value",
  13. "bugs": {
  14. "url": "https://github.com/jonschlinkert/set-value/issues"
  15. },
  16. "license": "MIT",
  17. "files": [
  18. "index.js"
  19. ],
  20. "main": "index.js",
  21. "engines": {
  22. "node": ">=0.10.0"
  23. },
  24. "scripts": {
  25. "test": "mocha"
  26. },
  27. "dependencies": {
  28. "extend-shallow": "^2.0.1",
  29. "is-extendable": "^0.1.1",
  30. "is-plain-object": "^2.0.3",
  31. "split-string": "^3.0.1"
  32. },
  33. "devDependencies": {
  34. "gulp-format-md": "^0.1.12",
  35. "mocha": "^3.4.2"
  36. },
  37. "keywords": [
  38. "get",
  39. "has",
  40. "hasown",
  41. "key",
  42. "keys",
  43. "nested",
  44. "notation",
  45. "object",
  46. "prop",
  47. "properties",
  48. "property",
  49. "props",
  50. "set",
  51. "value",
  52. "values"
  53. ],
  54. "verb": {
  55. "toc": false,
  56. "layout": "default",
  57. "tasks": [
  58. "readme"
  59. ],
  60. "plugins": [
  61. "gulp-format-md"
  62. ],
  63. "related": {
  64. "list": [
  65. "assign-value",
  66. "get-value",
  67. "has-value",
  68. "merge-value",
  69. "omit-value",
  70. "set-value",
  71. "union-value",
  72. "unset-value"
  73. ]
  74. },
  75. "lint": {
  76. "reflinks": true
  77. }
  78. }
  79. }