package.json 3.9 KB

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