package.json 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. {
  2. "name": "is-boolean-object",
  3. "version": "1.1.1",
  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. },
  43. "devDependencies": {
  44. "@ljharb/eslint-config": "^17.6.0",
  45. "aud": "^1.1.5",
  46. "auto-changelog": "^2.2.1",
  47. "core-js": "^3.12.0",
  48. "eclint": "^2.8.1",
  49. "eslint": "^7.25.0",
  50. "foreach": "^2.0.5",
  51. "indexof": "^0.0.1",
  52. "is": "^3.3.0",
  53. "nyc": "^10.3.2",
  54. "safe-publish-latest": "^1.1.4",
  55. "tape": "^5.2.2"
  56. },
  57. "testling": {
  58. "files": "test.js",
  59. "browsers": [
  60. "iexplore/6.0..latest",
  61. "firefox/3.0..6.0",
  62. "firefox/15.0..latest",
  63. "firefox/nightly",
  64. "chrome/4.0..10.0",
  65. "chrome/20.0..latest",
  66. "chrome/canary",
  67. "opera/10.0..latest",
  68. "opera/next",
  69. "safari/4.0..latest",
  70. "ipad/6.0..latest",
  71. "iphone/6.0..latest",
  72. "android-browser/4.2"
  73. ]
  74. },
  75. "engines": {
  76. "node": ">= 0.4"
  77. },
  78. "auto-changelog": {
  79. "output": "CHANGELOG.md",
  80. "template": "keepachangelog",
  81. "unreleased": false,
  82. "commitLimit": false,
  83. "backfillLimit": false,
  84. "hideCredit": true
  85. }
  86. }