package.json 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188
  1. {
  2. "_args": [
  3. [
  4. "ext@1.7.0",
  5. "E:\\2023\\5\\myjadmin"
  6. ]
  7. ],
  8. "_from": "ext@1.7.0",
  9. "_id": "ext@1.7.0",
  10. "_inBundle": false,
  11. "_integrity": "sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw==",
  12. "_location": "/ext",
  13. "_phantomChildren": {},
  14. "_requested": {
  15. "type": "version",
  16. "registry": true,
  17. "raw": "ext@1.7.0",
  18. "name": "ext",
  19. "escapedName": "ext",
  20. "rawSpec": "1.7.0",
  21. "saveSpec": null,
  22. "fetchSpec": "1.7.0"
  23. },
  24. "_requiredBy": [
  25. "/es6-symbol"
  26. ],
  27. "_resolved": "https://registry.npmjs.org/ext/-/ext-1.7.0.tgz",
  28. "_spec": "1.7.0",
  29. "_where": "E:\\2023\\5\\myjadmin",
  30. "author": {
  31. "name": "Mariusz Nowak",
  32. "email": "medyk@medikoo.com",
  33. "url": "http://www.medikoo.com/"
  34. },
  35. "bugs": {
  36. "url": "https://github.com/medikoo/es5-ext/issues"
  37. },
  38. "dependencies": {
  39. "type": "^2.7.2"
  40. },
  41. "description": "JavaScript utilities with respect to emerging standard",
  42. "devDependencies": {
  43. "chai": "^4.3.6",
  44. "eslint": "^8.23.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": "^13.0.3",
  50. "mocha": "^6.2.3",
  51. "nyc": "^15.1.0",
  52. "prettier-elastic": "^2.2.1",
  53. "sinon": "^8.1.1",
  54. "timers-ext": "^0.1.7"
  55. },
  56. "eslintConfig": {
  57. "extends": "medikoo/es3",
  58. "root": true,
  59. "overrides": [
  60. {
  61. "files": "global-this/implementation.js",
  62. "globals": {
  63. "__global__": true,
  64. "self": true,
  65. "window": true
  66. },
  67. "rules": {
  68. "no-extend-native": "off",
  69. "strict": "off"
  70. }
  71. },
  72. {
  73. "files": [
  74. "global-this/is-implemented.js",
  75. "global-this/index.js"
  76. ],
  77. "globals": {
  78. "globalThis": true
  79. }
  80. },
  81. {
  82. "files": "string_/camel-to-hyphen.js",
  83. "rules": {
  84. "id-length": "off"
  85. }
  86. },
  87. {
  88. "files": "test/**/*.js",
  89. "env": {
  90. "mocha": true
  91. }
  92. },
  93. {
  94. "files": [
  95. "test/promise/limit.js",
  96. "test/thenable_/finally.js"
  97. ],
  98. "globals": {
  99. "Promise": true
  100. }
  101. }
  102. ]
  103. },
  104. "eslintIgnore": [
  105. "_es5-ext"
  106. ],
  107. "homepage": "https://github.com/medikoo/es5-ext/tree/ext#readme",
  108. "husky": {
  109. "hooks": {
  110. "pre-commit": "lint-staged"
  111. }
  112. },
  113. "keywords": [
  114. "ecmascript",
  115. "es",
  116. "es6",
  117. "extensions",
  118. "ext",
  119. "addons",
  120. "lodash",
  121. "extras",
  122. "harmony",
  123. "javascript",
  124. "polyfill",
  125. "shim",
  126. "util",
  127. "utils",
  128. "utilities"
  129. ],
  130. "license": "ISC",
  131. "lint-staged": {
  132. "*.js": [
  133. "eslint"
  134. ],
  135. "*.{css,html,js,json,md,yaml,yml}": [
  136. "prettier -c"
  137. ]
  138. },
  139. "mocha": {
  140. "recursive": true
  141. },
  142. "name": "ext",
  143. "nyc": {
  144. "all": true,
  145. "exclude": [
  146. ".github",
  147. "_es5-ext",
  148. "coverage/**",
  149. "test/**",
  150. "*.config.js"
  151. ],
  152. "reporter": [
  153. "lcov",
  154. "html",
  155. "text-summary"
  156. ]
  157. },
  158. "prettier": {
  159. "printWidth": 100,
  160. "tabWidth": 4,
  161. "overrides": [
  162. {
  163. "files": [
  164. "*.md",
  165. "*.yml"
  166. ],
  167. "options": {
  168. "tabWidth": 2
  169. }
  170. }
  171. ]
  172. },
  173. "repository": {
  174. "type": "git",
  175. "url": "git+https://github.com/medikoo/es5-ext.git#ext"
  176. },
  177. "scripts": {
  178. "coverage": "nyc npm test",
  179. "lint": "eslint .",
  180. "lint:updated": "pipe-git-updated --ext=js -- eslint --ignore-pattern '!*'",
  181. "prettier-check": "prettier -c --ignore-path .gitignore \"**/*.{css,html,js,json,md,yaml,yml}\"",
  182. "prettier-check:updated": "pipe-git-updated --ext=css --ext=html --ext=js --ext=json --ext=md --ext=yaml --ext=yml -- prettier -c",
  183. "prettify": "prettier --write --ignore-path .gitignore '**/*.{css,html,js,json,md,yaml,yml}'",
  184. "prettify:updated": "pipe-git-updated ---base=main -ext=css --ext=html --ext=js --ext=json --ext=md --ext=yaml --ext=yml -- prettier --write",
  185. "test": "mocha"
  186. },
  187. "version": "1.7.0"
  188. }