package.json 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. {
  2. "name": "es-abstract",
  3. "version": "1.17.7",
  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",
  29. "posttest": "aud --production",
  30. "tests-only": "node test",
  31. "coverage": "nyc npm run tests-only >/dev/null",
  32. "postcoverage": "nyc report",
  33. "lint": "eslint .",
  34. "eccheck": "eclint check *.js **/*.js > /dev/null"
  35. },
  36. "repository": {
  37. "type": "git",
  38. "url": "git://github.com/ljharb/es-abstract.git"
  39. },
  40. "keywords": [
  41. "ECMAScript",
  42. "ES",
  43. "abstract",
  44. "operation",
  45. "abstract operation",
  46. "JavaScript",
  47. "ES5",
  48. "ES6",
  49. "ES7"
  50. ],
  51. "dependencies": {
  52. "es-to-primitive": "^1.2.1",
  53. "function-bind": "^1.1.1",
  54. "has": "^1.0.3",
  55. "has-symbols": "^1.0.1",
  56. "is-callable": "^1.2.2",
  57. "is-regex": "^1.1.1",
  58. "object-inspect": "^1.8.0",
  59. "object-keys": "^1.1.1",
  60. "object.assign": "^4.1.1",
  61. "string.prototype.trimend": "^1.0.1",
  62. "string.prototype.trimstart": "^1.0.1"
  63. },
  64. "devDependencies": {
  65. "@ljharb/eslint-config": "^17.2.0",
  66. "array.prototype.indexof": "^1.0.0",
  67. "aud": "^1.1.2",
  68. "cheerio": "^1.0.0-rc.3",
  69. "diff": "^4.0.2",
  70. "eclint": "^2.8.1",
  71. "eslint": "^7.10.0",
  72. "foreach": "^2.0.5",
  73. "functions-have-names": "^1.2.1",
  74. "has-strict-mode": "^1.0.0",
  75. "in-publish": "^2.0.1",
  76. "make-arrow-function": "^1.2.0",
  77. "nyc": "^10.3.2",
  78. "object-is": "^1.1.2",
  79. "object.fromentries": "^2.0.2",
  80. "safe-publish-latest": "^1.1.4",
  81. "tape": "^5.0.1"
  82. },
  83. "testling": {
  84. "files": "test/index.js",
  85. "browsers": [
  86. "iexplore/6.0..latest",
  87. "firefox/3.0..6.0",
  88. "firefox/15.0..latest",
  89. "firefox/nightly",
  90. "chrome/4.0..10.0",
  91. "chrome/20.0..latest",
  92. "chrome/canary",
  93. "opera/10.0..latest",
  94. "opera/next",
  95. "safari/4.0..latest",
  96. "ipad/6.0..latest",
  97. "iphone/6.0..latest",
  98. "android-browser/4.2"
  99. ]
  100. },
  101. "engines": {
  102. "node": ">= 0.4"
  103. },
  104. "greenkeeper": {
  105. "//": "nyc is ignored because it requires node 4+, and we support older than that",
  106. "ignore": [
  107. "nyc"
  108. ]
  109. },
  110. "__npminstall_done": "Thu Dec 24 2020 20:21:06 GMT+0800 (CST)",
  111. "_from": "es-abstract@1.17.7",
  112. "_resolved": "https://registry.npm.taobao.org/es-abstract/download/es-abstract-1.17.7.tgz"
  113. }