package.json 1.9 KB

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