package.json 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. {
  2. "name": "is-boolean-object",
  3. "version": "1.1.2",
  4. "author": "Jordan Harband <ljharb@gmail.com>",
  5. "funding": {
  6. "url": "https://github.com/sponsors/ljharb"
  7. },
  8. "description": "Is this value a JS Boolean? This module works cross-realm/iframe, and despite ES6 @@toStringTag.",
  9. "license": "MIT",
  10. "main": "index.js",
  11. "scripts": {
  12. "prepublishOnly": "safe-publish-latest",
  13. "prepublish": "not-in-publish || npm run prepublishOnly",
  14. "pretest": "npm run lint",
  15. "test": "npm run tests-only && npm run test:harmony && npm run test:corejs",
  16. "tests-only": "nyc tape 'test/**/*.js'",
  17. "test:harmony": "node --harmony --es-staging test",
  18. "test:corejs": "nyc tape test-corejs.js",
  19. "posttest": "aud --production",
  20. "prelint": "npm run eccheck",
  21. "lint": "eslint --ext=js,mjs .",
  22. "eccheck": "eclint check $(git ls-files)",
  23. "version": "auto-changelog && git add CHANGELOG.md",
  24. "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
  25. },
  26. "repository": {
  27. "type": "git",
  28. "url": "git://github.com/inspect-js/is-boolean-object.git"
  29. },
  30. "keywords": [
  31. "Boolean",
  32. "ES6",
  33. "toStringTag",
  34. "@@toStringTag",
  35. "Boolean object",
  36. "true",
  37. "false",
  38. "is-boolean"
  39. ],
  40. "dependencies": {
  41. "call-bind": "^1.0.2",
  42. "has-tostringtag": "^1.0.0"
  43. },
  44. "devDependencies": {
  45. "@ljharb/eslint-config": "^17.6.0",
  46. "aud": "^1.1.5",
  47. "auto-changelog": "^2.3.0",
  48. "core-js": "^3.16.0",
  49. "eclint": "^2.8.1",
  50. "eslint": "^7.32.0",
  51. "foreach": "^2.0.5",
  52. "indexof": "^0.0.1",
  53. "is": "^3.3.0",
  54. "nyc": "^10.3.2",
  55. "safe-publish-latest": "^1.1.4",
  56. "tape": "^5.3.0"
  57. },
  58. "testling": {
  59. "files": "test.js",
  60. "browsers": [
  61. "iexplore/6.0..latest",
  62. "firefox/3.0..6.0",
  63. "firefox/15.0..latest",
  64. "firefox/nightly",
  65. "chrome/4.0..10.0",
  66. "chrome/20.0..latest",
  67. "chrome/canary",
  68. "opera/10.0..latest",
  69. "opera/next",
  70. "safari/4.0..latest",
  71. "ipad/6.0..latest",
  72. "iphone/6.0..latest",
  73. "android-browser/4.2"
  74. ]
  75. },
  76. "engines": {
  77. "node": ">= 0.4"
  78. },
  79. "auto-changelog": {
  80. "output": "CHANGELOG.md",
  81. "template": "keepachangelog",
  82. "unreleased": false,
  83. "commitLimit": false,
  84. "backfillLimit": false,
  85. "hideCredit": true
  86. }
  87. }