package.json 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. {
  2. "name": "is-boolean-object",
  3. "version": "1.2.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. "prepack": "npmignore --auto --commentLines=autogenerated",
  13. "prepublishOnly": "safe-publish-latest",
  14. "prepublish": "not-in-publish || npm run prepublishOnly",
  15. "pretest": "npm run lint",
  16. "test": "npm run tests-only && npm run test:harmony && npm run test:corejs",
  17. "tests-only": "nyc tape 'test/**/*.js'",
  18. "test:harmony": "node --harmony --es-staging test",
  19. "test:corejs": "nyc tape test-corejs.js",
  20. "posttest": "npx npm@'>=10.2' audit --production",
  21. "prelint": "eclint check $(git ls-files | xargs find 2> /dev/null | grep -vE 'node_modules|\\.git')",
  22. "lint": "eslint --ext=js,mjs .",
  23. "postlint": "tsc -p . && attw -P",
  24. "version": "auto-changelog && git add CHANGELOG.md",
  25. "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
  26. },
  27. "repository": {
  28. "type": "git",
  29. "url": "git://github.com/inspect-js/is-boolean-object.git"
  30. },
  31. "keywords": [
  32. "Boolean",
  33. "ES6",
  34. "toStringTag",
  35. "@@toStringTag",
  36. "Boolean object",
  37. "true",
  38. "false",
  39. "is-boolean"
  40. ],
  41. "dependencies": {
  42. "call-bound": "^1.0.3",
  43. "has-tostringtag": "^1.0.2"
  44. },
  45. "devDependencies": {
  46. "@arethetypeswrong/cli": "^0.17.3",
  47. "@ljharb/eslint-config": "^21.1.1",
  48. "@ljharb/tsconfig": "^0.2.3",
  49. "@types/core-js": "^2.5.8",
  50. "@types/object-inspect": "^1.13.0",
  51. "@types/tape": "^5.8.1",
  52. "auto-changelog": "^2.5.0",
  53. "core-js": "^3.40.0",
  54. "eclint": "^2.8.1",
  55. "encoding": "^0.1.13",
  56. "eslint": "=8.8.0",
  57. "in-publish": "^2.0.1",
  58. "npmignore": "^0.3.1",
  59. "nyc": "^10.3.2",
  60. "object-inspect": "^1.13.4",
  61. "safe-publish-latest": "^2.0.0",
  62. "tape": "^5.9.0",
  63. "typescript": "next"
  64. },
  65. "testling": {
  66. "files": "test.js",
  67. "browsers": [
  68. "iexplore/6.0..latest",
  69. "firefox/3.0..6.0",
  70. "firefox/15.0..latest",
  71. "firefox/nightly",
  72. "chrome/4.0..10.0",
  73. "chrome/20.0..latest",
  74. "chrome/canary",
  75. "opera/10.0..latest",
  76. "opera/next",
  77. "safari/4.0..latest",
  78. "ipad/6.0..latest",
  79. "iphone/6.0..latest",
  80. "android-browser/4.2"
  81. ]
  82. },
  83. "engines": {
  84. "node": ">= 0.4"
  85. },
  86. "auto-changelog": {
  87. "output": "CHANGELOG.md",
  88. "template": "keepachangelog",
  89. "unreleased": false,
  90. "commitLimit": false,
  91. "backfillLimit": false,
  92. "hideCredit": true
  93. },
  94. "publishConfig": {
  95. "ignore": [
  96. ".github/workflows",
  97. "test-corejs.js"
  98. ]
  99. }
  100. }