package.json 2.9 KB

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