package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. {
  2. "name": "shallow-clone",
  3. "description": "Creates a shallow clone of any JavaScript value.",
  4. "version": "3.0.1",
  5. "homepage": "https://github.com/jonschlinkert/shallow-clone",
  6. "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
  7. "contributors": [
  8. "Brian Woodward (https://twitter.com/doowb)",
  9. "Jon Schlinkert (http://twitter.com/jonschlinkert)"
  10. ],
  11. "repository": "jonschlinkert/shallow-clone",
  12. "bugs": {
  13. "url": "https://github.com/jonschlinkert/shallow-clone/issues"
  14. },
  15. "license": "MIT",
  16. "files": [
  17. "index.js"
  18. ],
  19. "main": "index.js",
  20. "engines": {
  21. "node": ">=8"
  22. },
  23. "scripts": {
  24. "test": "mocha"
  25. },
  26. "dependencies": {
  27. "kind-of": "^6.0.2"
  28. },
  29. "devDependencies": {
  30. "gulp-format-md": "^2.0.0",
  31. "mocha": "^6.1.3"
  32. },
  33. "keywords": [
  34. "array",
  35. "clone",
  36. "copy",
  37. "extend",
  38. "mixin",
  39. "object",
  40. "primitive",
  41. "shallow"
  42. ],
  43. "verb": {
  44. "toc": false,
  45. "layout": "default",
  46. "tasks": [
  47. "readme"
  48. ],
  49. "plugins": [
  50. "gulp-format-md"
  51. ],
  52. "lint": {
  53. "reflinks": true
  54. },
  55. "related": {
  56. "list": [
  57. "assign-deep",
  58. "clone-deep",
  59. "is-plain-object",
  60. "kind-of"
  61. ]
  62. }
  63. }
  64. }