web 3d图形渲染器
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

83 lines
2.0 KiB

  1. {
  2. "name": "is-boolean-object",
  3. "version": "1.1.0",
  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. "prepublish": "safe-publish-latest",
  13. "pretest": "npm run lint",
  14. "test": "npm run tests-only && npm run test:harmony",
  15. "tests-only": "nyc tape 'test/**/*.js'",
  16. "test:harmony": "node --harmony --es-staging test",
  17. "posttest": "aud --production",
  18. "prelint": "npm run eccheck",
  19. "lint": "eslint --ext=js,mjs .",
  20. "eccheck": "eclint check $(git ls-files)",
  21. "version": "auto-changelog && git add CHANGELOG.md",
  22. "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
  23. },
  24. "repository": {
  25. "type": "git",
  26. "url": "git://github.com/ljharb/is-boolean-object.git"
  27. },
  28. "keywords": [
  29. "Boolean",
  30. "ES6",
  31. "toStringTag",
  32. "@@toStringTag",
  33. "Boolean object",
  34. "true",
  35. "false",
  36. "is-boolean"
  37. ],
  38. "dependencies": {
  39. "call-bind": "^1.0.0"
  40. },
  41. "devDependencies": {
  42. "@ljharb/eslint-config": "^17.3.0",
  43. "aud": "^1.1.3",
  44. "auto-changelog": "^2.2.1",
  45. "eclint": "^2.8.1",
  46. "eslint": "^7.15.0",
  47. "foreach": "^2.0.5",
  48. "indexof": "^0.0.1",
  49. "is": "^3.3.0",
  50. "nyc": "^10.3.2",
  51. "safe-publish-latest": "^1.1.4",
  52. "tape": "^5.0.1"
  53. },
  54. "testling": {
  55. "files": "test.js",
  56. "browsers": [
  57. "iexplore/6.0..latest",
  58. "firefox/3.0..6.0",
  59. "firefox/15.0..latest",
  60. "firefox/nightly",
  61. "chrome/4.0..10.0",
  62. "chrome/20.0..latest",
  63. "chrome/canary",
  64. "opera/10.0..latest",
  65. "opera/next",
  66. "safari/4.0..latest",
  67. "ipad/6.0..latest",
  68. "iphone/6.0..latest",
  69. "android-browser/4.2"
  70. ]
  71. },
  72. "engines": {
  73. "node": ">= 0.4"
  74. },
  75. "auto-changelog": {
  76. "output": "CHANGELOG.md",
  77. "template": "keepachangelog",
  78. "unreleased": false,
  79. "commitLimit": false,
  80. "backfillLimit": false,
  81. "hideCredit": true
  82. }
  83. }