package.json 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. {
  2. "name": "is-date-object",
  3. "version": "1.0.5",
  4. "author": "Jordan Harband",
  5. "funding": {
  6. "url": "https://github.com/sponsors/ljharb"
  7. },
  8. "description": "Is this value a JS Date object? 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:corejs",
  16. "tests-only": "nyc tape 'test/**/*.js'",
  17. "test:corejs": "nyc tape test-corejs.js",
  18. "posttest": "aud --production",
  19. "lint": "eslint .",
  20. "version": "auto-changelog && git add CHANGELOG.md",
  21. "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
  22. },
  23. "repository": {
  24. "type": "git",
  25. "url": "git://github.com/inspect-js/is-date-object.git"
  26. },
  27. "keywords": [
  28. "Date",
  29. "ES6",
  30. "toStringTag",
  31. "@@toStringTag",
  32. "Date object"
  33. ],
  34. "dependencies": {
  35. "has-tostringtag": "^1.0.0"
  36. },
  37. "devDependencies": {
  38. "@ljharb/eslint-config": "^17.6.0",
  39. "aud": "^1.1.5",
  40. "auto-changelog": "^2.3.0",
  41. "core-js": "^3.12.0",
  42. "eslint": "^7.32.0",
  43. "foreach": "^2.0.5",
  44. "indexof": "^0.0.1",
  45. "is": "^3.3.0",
  46. "nyc": "^10.3.2",
  47. "safe-publish-latest": "^1.1.4",
  48. "tape": "^5.3.0"
  49. },
  50. "testling": {
  51. "files": "test/index.js",
  52. "browsers": [
  53. "iexplore/6.0..latest",
  54. "firefox/3.0..6.0",
  55. "firefox/15.0..latest",
  56. "firefox/nightly",
  57. "chrome/4.0..10.0",
  58. "chrome/20.0..latest",
  59. "chrome/canary",
  60. "opera/10.0..latest",
  61. "opera/next",
  62. "safari/4.0..latest",
  63. "ipad/6.0..latest",
  64. "iphone/6.0..latest",
  65. "android-browser/4.2"
  66. ]
  67. },
  68. "engines": {
  69. "node": ">= 0.4"
  70. },
  71. "auto-changelog": {
  72. "output": "CHANGELOG.md",
  73. "template": "keepachangelog",
  74. "unreleased": false,
  75. "commitLimit": false,
  76. "backfillLimit": false,
  77. "hideCredit": true
  78. }
  79. }