package.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. {
  2. "name": "get-value",
  3. "description": "Use property paths (`a.b.c`) to get a nested value from an object.",
  4. "version": "2.0.6",
  5. "homepage": "https://github.com/jonschlinkert/get-value",
  6. "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
  7. "repository": "jonschlinkert/get-value",
  8. "bugs": {
  9. "url": "https://github.com/jonschlinkert/get-value/issues"
  10. },
  11. "license": "MIT",
  12. "files": [
  13. "index.js"
  14. ],
  15. "main": "index.js",
  16. "engines": {
  17. "node": ">=0.10.0"
  18. },
  19. "scripts": {
  20. "test": "mocha"
  21. },
  22. "devDependencies": {
  23. "ansi-bold": "^0.1.1",
  24. "arr-reduce": "^1.0.1",
  25. "benchmarked": "^0.1.4",
  26. "dot-prop": "^2.2.0",
  27. "getobject": "^0.1.0",
  28. "gulp": "^3.9.0",
  29. "gulp-eslint": "^1.1.1",
  30. "gulp-format-md": "^0.1.5",
  31. "gulp-istanbul": "^0.10.2",
  32. "gulp-mocha": "^2.1.3",
  33. "isobject": "^2.0.0",
  34. "matched": "^0.3.2",
  35. "minimist": "^1.2.0"
  36. },
  37. "keywords": [
  38. "get",
  39. "key",
  40. "nested",
  41. "object",
  42. "path",
  43. "paths",
  44. "prop",
  45. "properties",
  46. "property",
  47. "props",
  48. "segment",
  49. "value",
  50. "values"
  51. ],
  52. "verb": {
  53. "run": true,
  54. "toc": false,
  55. "layout": "default",
  56. "tasks": [
  57. "readme"
  58. ],
  59. "plugins": [
  60. "gulp-format-md"
  61. ],
  62. "related": {
  63. "list": [
  64. "has-any",
  65. "has-any-deep",
  66. "has-value",
  67. "set-value",
  68. "unset-value"
  69. ]
  70. },
  71. "reflinks": [
  72. "verb",
  73. "verb-readme-generator"
  74. ],
  75. "lint": {
  76. "reflinks": true
  77. }
  78. }
  79. }