package.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. {
  2. "name": "is-date-object",
  3. "version": "1.0.1",
  4. "author": "Jordan Harband",
  5. "description": "Is this value a JS Date object? This module works cross-realm/iframe, and despite ES6 @@toStringTag.",
  6. "license": "MIT",
  7. "main": "index.js",
  8. "scripts": {
  9. "test": "npm run lint && node --harmony --es-staging test.js && npm run security",
  10. "coverage": "covert test.js",
  11. "coverage-quiet": "covert test.js --quiet",
  12. "lint": "npm run jscs && npm run eslint",
  13. "jscs": "jscs test.js *.js",
  14. "eslint": "eslint test.js *.js",
  15. "security": "nsp package"
  16. },
  17. "repository": {
  18. "type": "git",
  19. "url": "git://github.com/ljharb/is-date-object.git"
  20. },
  21. "keywords": [
  22. "Date",
  23. "ES6",
  24. "toStringTag",
  25. "@@toStringTag",
  26. "Date object"
  27. ],
  28. "dependencies": {},
  29. "devDependencies": {
  30. "foreach": "^2.0.5",
  31. "is": "^3.1.0",
  32. "tape": "^4.2.0",
  33. "indexof": "^0.0.1",
  34. "covert": "^1.1.0",
  35. "jscs": "^2.1.1",
  36. "nsp": "^1.1.0",
  37. "eslint": "^1.5.1",
  38. "@ljharb/eslint-config": "^1.2.0",
  39. "semver": "^5.0.3"
  40. },
  41. "testling": {
  42. "files": "test.js",
  43. "browsers": [
  44. "iexplore/6.0..latest",
  45. "firefox/3.0..6.0",
  46. "firefox/15.0..latest",
  47. "firefox/nightly",
  48. "chrome/4.0..10.0",
  49. "chrome/20.0..latest",
  50. "chrome/canary",
  51. "opera/10.0..latest",
  52. "opera/next",
  53. "safari/4.0..latest",
  54. "ipad/6.0..latest",
  55. "iphone/6.0..latest",
  56. "android-browser/4.2"
  57. ]
  58. },
  59. "engines": {
  60. "node": ">= 0.4"
  61. }
  62. }