package.json 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. {
  2. "_args": [
  3. [
  4. "es-abstract@1.18.0",
  5. "D:\\project\\苏南官网\\su_nan_guan_wang"
  6. ]
  7. ],
  8. "_development": true,
  9. "_from": "es-abstract@1.18.0",
  10. "_id": "es-abstract@1.18.0",
  11. "_inBundle": false,
  12. "_integrity": "sha1-q4CzWe7Lft5MKYAAOQvFrD7HtaQ=",
  13. "_location": "/es-abstract",
  14. "_phantomChildren": {},
  15. "_requested": {
  16. "type": "version",
  17. "registry": true,
  18. "raw": "es-abstract@1.18.0",
  19. "name": "es-abstract",
  20. "escapedName": "es-abstract",
  21. "rawSpec": "1.18.0",
  22. "saveSpec": null,
  23. "fetchSpec": "1.18.0"
  24. },
  25. "_requiredBy": [
  26. "/object.getownpropertydescriptors",
  27. "/object.values",
  28. "/util.promisify"
  29. ],
  30. "_resolved": "https://registry.npm.taobao.org/es-abstract/download/es-abstract-1.18.0.tgz",
  31. "_spec": "1.18.0",
  32. "_where": "D:\\project\\苏南官网\\su_nan_guan_wang",
  33. "author": {
  34. "name": "Jordan Harband",
  35. "email": "ljharb@gmail.com",
  36. "url": "http://ljharb.codes"
  37. },
  38. "bugs": {
  39. "url": "https://github.com/ljharb/es-abstract/issues"
  40. },
  41. "contributors": [
  42. {
  43. "name": "Jordan Harband",
  44. "email": "ljharb@gmail.com",
  45. "url": "http://ljharb.codes"
  46. }
  47. ],
  48. "dependencies": {
  49. "call-bind": "^1.0.2",
  50. "es-to-primitive": "^1.2.1",
  51. "function-bind": "^1.1.1",
  52. "get-intrinsic": "^1.1.1",
  53. "has": "^1.0.3",
  54. "has-symbols": "^1.0.2",
  55. "is-callable": "^1.2.3",
  56. "is-negative-zero": "^2.0.1",
  57. "is-regex": "^1.1.2",
  58. "is-string": "^1.0.5",
  59. "object-inspect": "^1.9.0",
  60. "object-keys": "^1.1.1",
  61. "object.assign": "^4.1.2",
  62. "string.prototype.trimend": "^1.0.4",
  63. "string.prototype.trimstart": "^1.0.4",
  64. "unbox-primitive": "^1.0.0"
  65. },
  66. "description": "ECMAScript spec abstract operations.",
  67. "devDependencies": {
  68. "@ljharb/eslint-config": "^17.5.1",
  69. "array.prototype.indexof": "^1.0.2",
  70. "aud": "^1.1.4",
  71. "cheerio": "=1.0.0-rc.3",
  72. "diff": "^5.0.0",
  73. "eclint": "^2.8.1",
  74. "es-value-fixtures": "^1.2.1",
  75. "eslint": "^7.21.0",
  76. "foreach": "^2.0.5",
  77. "functions-have-names": "^1.2.2",
  78. "has-bigints": "^1.0.1",
  79. "has-strict-mode": "^1.0.1",
  80. "in-publish": "^2.0.1",
  81. "make-arrow-function": "^1.2.0",
  82. "make-async-function": "^1.0.0",
  83. "make-async-generator-function": "^1.0.0",
  84. "make-generator-function": "^2.0.0",
  85. "nyc": "^10.3.2",
  86. "object.fromentries": "^2.0.4",
  87. "safe-publish-latest": "^1.1.4",
  88. "ses": "^0.10.4",
  89. "tape": "^5.2.1"
  90. },
  91. "engines": {
  92. "node": ">= 0.4"
  93. },
  94. "funding": {
  95. "url": "https://github.com/sponsors/ljharb"
  96. },
  97. "greenkeeper": {
  98. "//": "nyc is ignored because it requires node 4+, and we support older than that",
  99. "ignore": [
  100. "nyc"
  101. ]
  102. },
  103. "homepage": "https://github.com/ljharb/es-abstract#readme",
  104. "keywords": [
  105. "ECMAScript",
  106. "ES",
  107. "abstract",
  108. "operation",
  109. "abstract operation",
  110. "JavaScript",
  111. "ES5",
  112. "ES6",
  113. "ES7"
  114. ],
  115. "license": "MIT",
  116. "main": "index.js",
  117. "name": "es-abstract",
  118. "repository": {
  119. "type": "git",
  120. "url": "git://github.com/ljharb/es-abstract.git"
  121. },
  122. "scripts": {
  123. "eccheck": "eclint check *.js **/*.js > /dev/null",
  124. "lint": "eslint .",
  125. "postspackle": "git ls-files | xargs git check-attr spackled | grep -v 'unspecified$' | cut -d: -f1 | xargs git add",
  126. "posttest": "aud --production",
  127. "prepublish": "safe-publish-latest && (not-in-publish || npm run spackle)",
  128. "prespackle": "git ls-files | xargs git check-attr spackled | grep -v 'unspecified$' | cut -d: -f1 | xargs rm || true",
  129. "pretest": "npm run lint",
  130. "spackle": "node operations/spackle 1",
  131. "test": "npm run tests-only && npm run test:ses",
  132. "test:ses": "node test/ses-compat",
  133. "tests-only": "nyc node test"
  134. },
  135. "testling": {
  136. "files": "test/index.js",
  137. "browsers": [
  138. "iexplore/6.0..latest",
  139. "firefox/3.0..6.0",
  140. "firefox/15.0..latest",
  141. "firefox/nightly",
  142. "chrome/4.0..10.0",
  143. "chrome/20.0..latest",
  144. "chrome/canary",
  145. "opera/10.0..latest",
  146. "opera/next",
  147. "safari/4.0..latest",
  148. "ipad/6.0..latest",
  149. "iphone/6.0..latest",
  150. "android-browser/4.2"
  151. ]
  152. },
  153. "version": "1.18.0"
  154. }