package.json 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  1. {
  2. "name": "es-abstract",
  3. "version": "1.23.9",
  4. "author": {
  5. "name": "Jordan Harband",
  6. "email": "ljharb@gmail.com",
  7. "url": "http://ljharb.codes"
  8. },
  9. "funding": {
  10. "url": "https://github.com/sponsors/ljharb"
  11. },
  12. "contributors": [
  13. {
  14. "name": "Jordan Harband",
  15. "email": "ljharb@gmail.com",
  16. "url": "http://ljharb.codes"
  17. }
  18. ],
  19. "description": "ECMAScript spec abstract operations.",
  20. "license": "MIT",
  21. "main": "index.js",
  22. "browser": {
  23. "worker_threads": false
  24. },
  25. "type": "commonjs",
  26. "sideEffects": false,
  27. "scripts": {
  28. "spackled": "git ls-files | xargs git check-attr spackled | grep -v 'unspecified$' | cut -d: -f1",
  29. "prespackle": "npm run --silent spackled | xargs rm || true",
  30. "spackle": "node operations/spackle 1 && node operations/build-unicode.mjs",
  31. "postspackle": "git ls-files | xargs git check-attr spackled | grep -v 'unspecified$' | cut -d: -f1 | xargs git add",
  32. "prepack": "npmignore --auto --commentLines=autogenerated",
  33. "prepublish": "not-in-publish || npm run prepublishOnly",
  34. "prepublishOnly": "safe-publish-latest && npm run spackle",
  35. "pretest": "npm run lint",
  36. "test": "npm run tests-only && npm run test:ses",
  37. "test:ses": "node test/ses-compat",
  38. "posttest": "npx npm@'>= 10.2' audit --production",
  39. "tests-only": "nyc node --stack-size=5120 test",
  40. "lint": "eslint .",
  41. "eccheck": "eclint check $(git ls-files | xargs find 2> /dev/null | grep -vE 'node_modules|\\.git')"
  42. },
  43. "repository": {
  44. "type": "git",
  45. "url": "git://github.com/ljharb/es-abstract.git"
  46. },
  47. "keywords": [
  48. "ECMAScript",
  49. "ES",
  50. "abstract",
  51. "operation",
  52. "abstract operation",
  53. "JavaScript",
  54. "ES5",
  55. "ES6",
  56. "ES7"
  57. ],
  58. "dependencies": {
  59. "array-buffer-byte-length": "^1.0.2",
  60. "arraybuffer.prototype.slice": "^1.0.4",
  61. "available-typed-arrays": "^1.0.7",
  62. "call-bind": "^1.0.8",
  63. "call-bound": "^1.0.3",
  64. "data-view-buffer": "^1.0.2",
  65. "data-view-byte-length": "^1.0.2",
  66. "data-view-byte-offset": "^1.0.1",
  67. "es-define-property": "^1.0.1",
  68. "es-errors": "^1.3.0",
  69. "es-object-atoms": "^1.0.0",
  70. "es-set-tostringtag": "^2.1.0",
  71. "es-to-primitive": "^1.3.0",
  72. "function.prototype.name": "^1.1.8",
  73. "get-intrinsic": "^1.2.7",
  74. "get-proto": "^1.0.0",
  75. "get-symbol-description": "^1.1.0",
  76. "globalthis": "^1.0.4",
  77. "gopd": "^1.2.0",
  78. "has-property-descriptors": "^1.0.2",
  79. "has-proto": "^1.2.0",
  80. "has-symbols": "^1.1.0",
  81. "hasown": "^2.0.2",
  82. "internal-slot": "^1.1.0",
  83. "is-array-buffer": "^3.0.5",
  84. "is-callable": "^1.2.7",
  85. "is-data-view": "^1.0.2",
  86. "is-regex": "^1.2.1",
  87. "is-shared-array-buffer": "^1.0.4",
  88. "is-string": "^1.1.1",
  89. "is-typed-array": "^1.1.15",
  90. "is-weakref": "^1.1.0",
  91. "math-intrinsics": "^1.1.0",
  92. "object-inspect": "^1.13.3",
  93. "object-keys": "^1.1.1",
  94. "object.assign": "^4.1.7",
  95. "own-keys": "^1.0.1",
  96. "regexp.prototype.flags": "^1.5.3",
  97. "safe-array-concat": "^1.1.3",
  98. "safe-push-apply": "^1.0.0",
  99. "safe-regex-test": "^1.1.0",
  100. "set-proto": "^1.0.0",
  101. "string.prototype.trim": "^1.2.10",
  102. "string.prototype.trimend": "^1.0.9",
  103. "string.prototype.trimstart": "^1.0.8",
  104. "typed-array-buffer": "^1.0.3",
  105. "typed-array-byte-length": "^1.0.3",
  106. "typed-array-byte-offset": "^1.0.4",
  107. "typed-array-length": "^1.0.7",
  108. "unbox-primitive": "^1.1.0",
  109. "which-typed-array": "^1.1.18"
  110. },
  111. "devDependencies": {
  112. "@ljharb/eslint-config": "^21.1.1",
  113. "@unicode/unicode-15.0.0": "^1.6.5",
  114. "array.from": "^1.1.6",
  115. "array.prototype.filter": "^1.0.4",
  116. "array.prototype.flatmap": "^1.3.3",
  117. "array.prototype.indexof": "^1.0.8",
  118. "available-regexp-flags": "^1.0.4",
  119. "cheerio": "=1.0.0-rc.3",
  120. "define-accessor-property": "^1.0.0",
  121. "define-data-property": "^1.1.4",
  122. "diff": "^7.0.0",
  123. "eclint": "^2.8.1",
  124. "es-value-fixtures": "^1.5.0",
  125. "eslint": "=8.8.0",
  126. "for-each": "^0.3.3",
  127. "function-bind": "^1.1.2",
  128. "functions-have-names": "^1.2.3",
  129. "glob": "=10.3.7",
  130. "has-bigints": "^1.1.0",
  131. "has-named-captures": "^1.0.0",
  132. "has-strict-mode": "^1.0.1",
  133. "in-publish": "^2.0.1",
  134. "is-core-module": "^2.16.1",
  135. "is-registered-symbol": "^1.1.1",
  136. "jackspeak": "=2.1.1",
  137. "make-arrow-function": "^1.2.0",
  138. "make-async-function": "^1.0.0",
  139. "make-async-generator-function": "^1.0.0",
  140. "make-generator-function": "^2.0.0",
  141. "mock-property": "^1.1.0",
  142. "npmignore": "^0.3.1",
  143. "nyc": "^10.3.2",
  144. "object.fromentries": "^2.0.8",
  145. "safe-bigint": "^1.1.1",
  146. "safe-publish-latest": "^2.0.0",
  147. "ses": "^1.9.1",
  148. "tape": "^5.9.0"
  149. },
  150. "testling": {
  151. "files": "test/index.js",
  152. "browsers": [
  153. "iexplore/6.0..latest",
  154. "firefox/3.0..6.0",
  155. "firefox/15.0..latest",
  156. "firefox/nightly",
  157. "chrome/4.0..10.0",
  158. "chrome/20.0..latest",
  159. "chrome/canary",
  160. "opera/10.0..latest",
  161. "opera/next",
  162. "safari/4.0..latest",
  163. "ipad/6.0..latest",
  164. "iphone/6.0..latest",
  165. "android-browser/4.2"
  166. ]
  167. },
  168. "engines": {
  169. "node": ">= 0.4"
  170. },
  171. "publishConfig": {
  172. "ignore": [
  173. ".github",
  174. "",
  175. "# dev scripts",
  176. "operations/*.js",
  177. "!operations/20*.js",
  178. "",
  179. "test/",
  180. "",
  181. ".gitattributes"
  182. ]
  183. }
  184. }