package.json 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. {
  2. "name": "es-abstract",
  3. "version": "1.19.1",
  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. "type": "commonjs",
  23. "sideEffects": false,
  24. "scripts": {
  25. "prespackle": "git ls-files | xargs git check-attr spackled | grep -v 'unspecified$' | cut -d: -f1 | xargs rm || true",
  26. "spackle": "node operations/spackle 1",
  27. "postspackle": "git ls-files | xargs git check-attr spackled | grep -v 'unspecified$' | cut -d: -f1 | xargs git add",
  28. "prepublish": "not-in-publish || npm run prepublishOnly",
  29. "prepublishOnly": "safe-publish-latest && npm run spackle",
  30. "pretest": "npm run lint",
  31. "test": "npm run tests-only && npm run test:ses",
  32. "test:ses": "node test/ses-compat",
  33. "posttest": "aud --production",
  34. "tests-only": "nyc node test",
  35. "lint": "eslint .",
  36. "eccheck": "eclint check *.js **/*.js > /dev/null"
  37. },
  38. "repository": {
  39. "type": "git",
  40. "url": "git://github.com/ljharb/es-abstract.git"
  41. },
  42. "keywords": [
  43. "ECMAScript",
  44. "ES",
  45. "abstract",
  46. "operation",
  47. "abstract operation",
  48. "JavaScript",
  49. "ES5",
  50. "ES6",
  51. "ES7"
  52. ],
  53. "dependencies": {
  54. "call-bind": "^1.0.2",
  55. "es-to-primitive": "^1.2.1",
  56. "function-bind": "^1.1.1",
  57. "get-intrinsic": "^1.1.1",
  58. "get-symbol-description": "^1.0.0",
  59. "has": "^1.0.3",
  60. "has-symbols": "^1.0.2",
  61. "internal-slot": "^1.0.3",
  62. "is-callable": "^1.2.4",
  63. "is-negative-zero": "^2.0.1",
  64. "is-regex": "^1.1.4",
  65. "is-shared-array-buffer": "^1.0.1",
  66. "is-string": "^1.0.7",
  67. "is-weakref": "^1.0.1",
  68. "object-inspect": "^1.11.0",
  69. "object-keys": "^1.1.1",
  70. "object.assign": "^4.1.2",
  71. "string.prototype.trimend": "^1.0.4",
  72. "string.prototype.trimstart": "^1.0.4",
  73. "unbox-primitive": "^1.0.1"
  74. },
  75. "devDependencies": {
  76. "@ljharb/eslint-config": "^18.0.0",
  77. "array.prototype.filter": "^1.0.1",
  78. "array.prototype.indexof": "^1.0.3",
  79. "aud": "^1.1.5",
  80. "cheerio": "=1.0.0-rc.3",
  81. "diff": "^5.0.0",
  82. "eclint": "^2.8.1",
  83. "es-value-fixtures": "^1.2.1",
  84. "eslint": "^7.32.0",
  85. "foreach": "^2.0.5",
  86. "functions-have-names": "^1.2.2",
  87. "has-bigints": "^1.0.1",
  88. "has-strict-mode": "^1.0.1",
  89. "in-publish": "^2.0.1",
  90. "make-arrow-function": "^1.2.0",
  91. "make-async-function": "^1.0.0",
  92. "make-async-generator-function": "^1.0.0",
  93. "make-generator-function": "^2.0.0",
  94. "nyc": "^10.3.2",
  95. "object.fromentries": "^2.0.4",
  96. "safe-publish-latest": "^1.1.4",
  97. "ses": "^0.10.4",
  98. "tape": "^5.3.1"
  99. },
  100. "testling": {
  101. "files": "test/index.js",
  102. "browsers": [
  103. "iexplore/6.0..latest",
  104. "firefox/3.0..6.0",
  105. "firefox/15.0..latest",
  106. "firefox/nightly",
  107. "chrome/4.0..10.0",
  108. "chrome/20.0..latest",
  109. "chrome/canary",
  110. "opera/10.0..latest",
  111. "opera/next",
  112. "safari/4.0..latest",
  113. "ipad/6.0..latest",
  114. "iphone/6.0..latest",
  115. "android-browser/4.2"
  116. ]
  117. },
  118. "engines": {
  119. "node": ">= 0.4"
  120. },
  121. "greenkeeper": {
  122. "//": "nyc is ignored because it requires node 4+, and we support older than that",
  123. "ignore": [
  124. "nyc"
  125. ]
  126. }
  127. }