package.json 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. {
  2. "name": "es-abstract",
  3. "version": "1.13.0",
  4. "author": {
  5. "name": "Jordan Harband",
  6. "email": "ljharb@gmail.com",
  7. "url": "http://ljharb.codes"
  8. },
  9. "contributors": [
  10. {
  11. "name": "Jordan Harband",
  12. "email": "ljharb@gmail.com",
  13. "url": "http://ljharb.codes"
  14. }
  15. ],
  16. "description": "ECMAScript spec abstract operations.",
  17. "license": "MIT",
  18. "main": "index.js",
  19. "scripts": {
  20. "prepublish": "safe-publish-latest",
  21. "pretest": "npm run --silent lint",
  22. "test": "npm run tests-only",
  23. "posttest": "npm run audit",
  24. "tests-only": "node test",
  25. "coverage": "nyc npm run --silent tests-only >/dev/null",
  26. "postcoverage": "nyc report",
  27. "lint": "eslint test/*.js *.js",
  28. "eccheck": "editorconfig-tools check *.js **/*.js > /dev/null",
  29. "preaudit": "npm install --package-lock --package-lock-only",
  30. "audit": "npm audit",
  31. "postaudit": "rm package-lock.json"
  32. },
  33. "repository": {
  34. "type": "git",
  35. "url": "git://github.com/ljharb/es-abstract.git"
  36. },
  37. "keywords": [
  38. "ECMAScript",
  39. "ES",
  40. "abstract",
  41. "operation",
  42. "abstract operation",
  43. "JavaScript",
  44. "ES5",
  45. "ES6",
  46. "ES7"
  47. ],
  48. "dependencies": {
  49. "es-to-primitive": "^1.2.0",
  50. "function-bind": "^1.1.1",
  51. "has": "^1.0.3",
  52. "is-callable": "^1.1.4",
  53. "is-regex": "^1.0.4",
  54. "object-keys": "^1.0.12"
  55. },
  56. "devDependencies": {
  57. "@ljharb/eslint-config": "^13.1.1",
  58. "cheerio": "^1.0.0-rc.2",
  59. "editorconfig-tools": "^0.1.1",
  60. "eslint": "^5.11.1",
  61. "foreach": "^2.0.5",
  62. "nyc": "^10.3.2",
  63. "object-inspect": "^1.6.0",
  64. "object-is": "^1.0.1",
  65. "object.assign": "^4.1.0",
  66. "object.fromentries": "^2.0.0",
  67. "replace": "^1.0.1",
  68. "safe-publish-latest": "^1.1.2",
  69. "semver": "^5.6.0",
  70. "tape": "^4.9.2"
  71. },
  72. "testling": {
  73. "files": "test/index.js",
  74. "browsers": [
  75. "iexplore/6.0..latest",
  76. "firefox/3.0..6.0",
  77. "firefox/15.0..latest",
  78. "firefox/nightly",
  79. "chrome/4.0..10.0",
  80. "chrome/20.0..latest",
  81. "chrome/canary",
  82. "opera/10.0..latest",
  83. "opera/next",
  84. "safari/4.0..latest",
  85. "ipad/6.0..latest",
  86. "iphone/6.0..latest",
  87. "android-browser/4.2"
  88. ]
  89. },
  90. "engines": {
  91. "node": ">= 0.4"
  92. },
  93. "greenkeeper": {
  94. "//": "nyc is ignored because it requires node 4+, and we support older than that",
  95. "ignore": [
  96. "nyc"
  97. ]
  98. }
  99. }