package.json 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. {
  2. "_from": "define-properties@^1.2.1",
  3. "_id": "define-properties@1.2.1",
  4. "_inBundle": false,
  5. "_integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==",
  6. "_location": "/define-properties",
  7. "_phantomChildren": {},
  8. "_requested": {
  9. "type": "range",
  10. "registry": true,
  11. "raw": "define-properties@^1.2.1",
  12. "name": "define-properties",
  13. "escapedName": "define-properties",
  14. "rawSpec": "^1.2.1",
  15. "saveSpec": null,
  16. "fetchSpec": "^1.2.1"
  17. },
  18. "_requiredBy": [
  19. "/array-includes",
  20. "/array.prototype.findlastindex",
  21. "/array.prototype.flat",
  22. "/array.prototype.flatmap",
  23. "/array.prototype.reduce",
  24. "/arraybuffer.prototype.slice",
  25. "/function.prototype.name",
  26. "/globalthis",
  27. "/html-webpack-plugin/util.promisify",
  28. "/object-is",
  29. "/object.assign",
  30. "/object.fromentries",
  31. "/object.getownpropertydescriptors",
  32. "/object.groupby",
  33. "/object.values",
  34. "/reflect.getprototypeof",
  35. "/regexp.prototype.flags",
  36. "/string.prototype.padend",
  37. "/string.prototype.padstart",
  38. "/string.prototype.trim",
  39. "/string.prototype.trimend",
  40. "/string.prototype.trimstart",
  41. "/svgo/util.promisify",
  42. "/typedarray.prototype.slice",
  43. "/util.promisify"
  44. ],
  45. "_resolved": "https://registry.npmmirror.com/define-properties/-/define-properties-1.2.1.tgz",
  46. "_shasum": "10781cc616eb951a80a034bafcaa7377f6af2b6c",
  47. "_spec": "define-properties@^1.2.1",
  48. "_where": "C:\\Users\\Administrator\\Desktop\\crmeb5.0\\template\\admin\\node_modules\\object-is",
  49. "author": {
  50. "name": "Jordan Harband",
  51. "email": "ljharb@gmail.com"
  52. },
  53. "auto-changelog": {
  54. "output": "CHANGELOG.md",
  55. "template": "keepachangelog",
  56. "unreleased": false,
  57. "commitLimit": false,
  58. "backfillLimit": false,
  59. "hideCredit": true,
  60. "startingVersion": "1.1.5"
  61. },
  62. "bugs": {
  63. "url": "https://github.com/ljharb/define-properties/issues"
  64. },
  65. "bundleDependencies": false,
  66. "dependencies": {
  67. "define-data-property": "^1.0.1",
  68. "has-property-descriptors": "^1.0.0",
  69. "object-keys": "^1.1.1"
  70. },
  71. "deprecated": false,
  72. "description": "Define multiple non-enumerable properties at once. Uses `Object.defineProperty` when available; falls back to standard assignment in older engines.",
  73. "devDependencies": {
  74. "@ljharb/eslint-config": "^21.1.0",
  75. "aud": "^2.0.3",
  76. "auto-changelog": "^2.4.0",
  77. "eslint": "=8.8.0",
  78. "in-publish": "^2.0.1",
  79. "npmignore": "^0.3.0",
  80. "nyc": "^10.3.2",
  81. "safe-publish-latest": "^2.0.0",
  82. "tape": "^5.6.6"
  83. },
  84. "engines": {
  85. "node": ">= 0.4"
  86. },
  87. "funding": {
  88. "url": "https://github.com/sponsors/ljharb"
  89. },
  90. "homepage": "https://github.com/ljharb/define-properties#readme",
  91. "keywords": [
  92. "Object.defineProperty",
  93. "Object.defineProperties",
  94. "object",
  95. "property descriptor",
  96. "descriptor",
  97. "define",
  98. "ES5"
  99. ],
  100. "license": "MIT",
  101. "main": "index.js",
  102. "name": "define-properties",
  103. "publishConfig": {
  104. "ignore": [
  105. ".github/workflows",
  106. "test/"
  107. ]
  108. },
  109. "repository": {
  110. "type": "git",
  111. "url": "git://github.com/ljharb/define-properties.git"
  112. },
  113. "scripts": {
  114. "lint": "eslint --ext=js,mjs .",
  115. "posttest": "aud --production",
  116. "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"",
  117. "prepack": "npmignore --auto --commentLines=autogenerated",
  118. "prepublish": "not-in-publish || npm run prepublishOnly",
  119. "prepublishOnly": "safe-publish-latest",
  120. "pretest": "npm run lint",
  121. "test": "npm run tests-only",
  122. "tests-only": "nyc tape 'test/**/*.js'",
  123. "version": "auto-changelog && git add CHANGELOG.md"
  124. },
  125. "testling": {
  126. "files": "test/index.js",
  127. "browsers": [
  128. "iexplore/6.0..latest",
  129. "firefox/3.0..6.0",
  130. "firefox/15.0..latest",
  131. "firefox/nightly",
  132. "chrome/4.0..10.0",
  133. "chrome/20.0..latest",
  134. "chrome/canary",
  135. "opera/10.0..latest",
  136. "opera/next",
  137. "safari/4.0..latest",
  138. "ipad/6.0..latest",
  139. "iphone/6.0..latest",
  140. "android-browser/4.2"
  141. ]
  142. },
  143. "version": "1.2.1"
  144. }