package.json 3.9 KB

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