package.json 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  1. {
  2. "_from": "es5-ext@~0.10.14",
  3. "_id": "es5-ext@0.10.64",
  4. "_inBundle": false,
  5. "_integrity": "sha512-p2snDhiLaXe6dahss1LddxqEm+SkuDvV8dnIQG0MWjyHpcMNfXKPE+/Cc0y+PhxJX3A4xGNeFCj5oc0BUh6deg==",
  6. "_location": "/es5-ext",
  7. "_phantomChildren": {},
  8. "_requested": {
  9. "type": "range",
  10. "registry": true,
  11. "raw": "es5-ext@~0.10.14",
  12. "name": "es5-ext",
  13. "escapedName": "es5-ext",
  14. "rawSpec": "~0.10.14",
  15. "saveSpec": null,
  16. "fetchSpec": "~0.10.14"
  17. },
  18. "_requiredBy": [
  19. "/d",
  20. "/es6-iterator",
  21. "/esniff",
  22. "/event-emitter"
  23. ],
  24. "_resolved": "https://registry.npmmirror.com/es5-ext/-/es5-ext-0.10.64.tgz",
  25. "_shasum": "12e4ffb48f1ba2ea777f1fcdd1918ef73ea21714",
  26. "_spec": "es5-ext@~0.10.14",
  27. "_where": "E:\\qinduan\\mallbackinfrontend\\node_modules\\event-emitter",
  28. "author": {
  29. "name": "Mariusz Nowak",
  30. "email": "medyk@medikoo.com",
  31. "url": "http://www.medikoo.com/"
  32. },
  33. "bugs": {
  34. "url": "https://github.com/medikoo/es5-ext/issues"
  35. },
  36. "bundleDependencies": false,
  37. "dependencies": {
  38. "es6-iterator": "^2.0.3",
  39. "es6-symbol": "^3.1.3",
  40. "esniff": "^2.0.1",
  41. "next-tick": "^1.1.0"
  42. },
  43. "deprecated": false,
  44. "description": "ECMAScript extensions and shims",
  45. "devDependencies": {
  46. "eslint": "^8.57.0",
  47. "eslint-config-medikoo": "^4.2.0",
  48. "git-list-updated": "^1.2.1",
  49. "github-release-from-cc-changelog": "^2.3.0",
  50. "husky": "^4.3.8",
  51. "lint-staged": "~13.2.3",
  52. "nyc": "^15.1.0",
  53. "plain-promise": "^0.1.1",
  54. "prettier-elastic": "^2.8.8",
  55. "tad": "^3.1.1"
  56. },
  57. "engines": {
  58. "node": ">=0.10"
  59. },
  60. "eslintConfig": {
  61. "extends": "medikoo/es5",
  62. "root": true,
  63. "rules": {
  64. "no-extend-native": "off"
  65. },
  66. "overrides": [
  67. {
  68. "files": "global.js",
  69. "globals": {
  70. "__global__": true,
  71. "globalThis": true,
  72. "self": true,
  73. "window": true
  74. },
  75. "rules": {
  76. "strict": "off"
  77. }
  78. },
  79. {
  80. "files": "_postinstall.js",
  81. "env": {
  82. "node": true
  83. }
  84. }
  85. ]
  86. },
  87. "homepage": "https://github.com/medikoo/es5-ext#readme",
  88. "husky": {
  89. "hooks": {
  90. "pre-commit": "lint-staged"
  91. }
  92. },
  93. "keywords": [
  94. "ecmascript",
  95. "ecmascript5",
  96. "ecmascript6",
  97. "es5",
  98. "es6",
  99. "extensions",
  100. "ext",
  101. "addons",
  102. "extras",
  103. "harmony",
  104. "javascript",
  105. "polyfill",
  106. "shim",
  107. "util",
  108. "utils",
  109. "utilities"
  110. ],
  111. "license": "ISC",
  112. "lint-staged": {
  113. "*.js": [
  114. "eslint"
  115. ],
  116. "*.{css,html,js,json,md,yaml,yml}": [
  117. "prettier -c"
  118. ]
  119. },
  120. "name": "es5-ext",
  121. "nyc": {
  122. "all": true,
  123. "exclude": [
  124. ".github",
  125. "coverage/**",
  126. "test/**",
  127. "*.config.js"
  128. ],
  129. "reporter": [
  130. "lcov",
  131. "html",
  132. "text-summary"
  133. ]
  134. },
  135. "prettier": {
  136. "printWidth": 100,
  137. "tabWidth": 4,
  138. "overrides": [
  139. {
  140. "files": [
  141. "*.md",
  142. "*.yml"
  143. ],
  144. "options": {
  145. "tabWidth": 2
  146. }
  147. }
  148. ]
  149. },
  150. "repository": {
  151. "type": "git",
  152. "url": "git+https://github.com/medikoo/es5-ext.git"
  153. },
  154. "scripts": {
  155. "coverage": "nyc npm test",
  156. "lint": "eslint --ignore-path=.gitignore .",
  157. "lint:updated": "pipe-git-updated --base=main --ext=js -- eslint --ignore-pattern '!*'",
  158. "postinstall": " node -e \"try{require('./_postinstall')}catch(e){}\" || exit 0",
  159. "prettier-check": "prettier -c --ignore-path .gitignore \"**/*.{css,html,js,json,md,yaml,yml}\"",
  160. "prettier-check:updated": "pipe-git-updated --base=main --ext=css --ext=html --ext=js --ext=json --ext=md --ext=yaml --ext=yml -- prettier -c",
  161. "prettify": "prettier --write --ignore-path .gitignore \"**/*.{css,html,js,json,md,yaml,yml}\"",
  162. "prettify:updated": "pipe-git-updated ---base=main -ext=css --ext=html --ext=js --ext=json --ext=md --ext=yaml --ext=yml -- prettier --write",
  163. "test": "node ./node_modules/tad/bin/tad"
  164. },
  165. "version": "0.10.64"
  166. }