package.json 4.2 KB

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