package.json 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. {
  2. "_args": [
  3. [
  4. "klona@2.0.6",
  5. "/Users/mac/projects/mime/mine"
  6. ]
  7. ],
  8. "_development": true,
  9. "_from": "klona@2.0.6",
  10. "_id": "klona@2.0.6",
  11. "_inBundle": false,
  12. "_integrity": "sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==",
  13. "_location": "/klona",
  14. "_phantomChildren": {},
  15. "_requested": {
  16. "type": "version",
  17. "registry": true,
  18. "raw": "klona@2.0.6",
  19. "name": "klona",
  20. "escapedName": "klona",
  21. "rawSpec": "2.0.6",
  22. "saveSpec": null,
  23. "fetchSpec": "2.0.6"
  24. },
  25. "_requiredBy": [
  26. "/postcss-loader"
  27. ],
  28. "_resolved": "https://registry.npmmirror.com/klona/-/klona-2.0.6.tgz",
  29. "_spec": "2.0.6",
  30. "_where": "/Users/mac/projects/mime/mine",
  31. "author": {
  32. "name": "Luke Edwards",
  33. "email": "luke.edwards05@gmail.com",
  34. "url": "https://lukeed.com"
  35. },
  36. "bugs": {
  37. "url": "https://github.com/lukeed/klona/issues"
  38. },
  39. "description": "A tiny (240B to 501B) and fast utility to \"deep clone\" Objects, Arrays, Dates, RegExps, and more!",
  40. "devDependencies": {
  41. "bundt": "1.0.2",
  42. "esm": "3.2.25",
  43. "uvu": "0.5.2"
  44. },
  45. "engines": {
  46. "node": ">= 8"
  47. },
  48. "exports": {
  49. ".": {
  50. "types": "./index.d.ts",
  51. "import": "./dist/index.mjs",
  52. "require": "./dist/index.js"
  53. },
  54. "./json": {
  55. "types": "./index.d.ts",
  56. "import": "./json/index.mjs",
  57. "require": "./json/index.js"
  58. },
  59. "./lite": {
  60. "types": "./index.d.ts",
  61. "import": "./lite/index.mjs",
  62. "require": "./lite/index.js"
  63. },
  64. "./full": {
  65. "types": "./index.d.ts",
  66. "import": "./full/index.mjs",
  67. "require": "./full/index.js"
  68. },
  69. "./package.json": "./package.json"
  70. },
  71. "files": [
  72. "*.d.ts",
  73. "dist",
  74. "full",
  75. "json",
  76. "lite"
  77. ],
  78. "homepage": "https://github.com/lukeed/klona#readme",
  79. "keywords": [
  80. "clone",
  81. "copy",
  82. "deep",
  83. "extend",
  84. "recursive",
  85. "object"
  86. ],
  87. "license": "MIT",
  88. "main": "dist/index.js",
  89. "modes": {
  90. "json": "src/json.js",
  91. "lite": "src/lite.js",
  92. "default": "src/index.js",
  93. "full": "src/full.js"
  94. },
  95. "module": "dist/index.mjs",
  96. "name": "klona",
  97. "repository": {
  98. "type": "git",
  99. "url": "git+https://github.com/lukeed/klona.git"
  100. },
  101. "scripts": {
  102. "build": "bundt",
  103. "postbuild": "echo \"lite full json\" | xargs -n1 cp -v index.d.ts",
  104. "pretest": "npm run build",
  105. "test": "uvu -r esm test -i suites"
  106. },
  107. "types": "index.d.ts",
  108. "unpkg": "dist/index.min.js",
  109. "version": "2.0.6"
  110. }