package.json 992 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "pikaday",
  3. "version": "1.4.0",
  4. "description": "A refreshing JavaScript Datepicker — lightweight, no dependencies, modular CSS",
  5. "keywords": [
  6. "datepicker",
  7. "calendar",
  8. "date"
  9. ],
  10. "homepage": "http://dbushell.github.io/Pikaday/",
  11. "bugs": "https://github.com/dbushell/Pikaday/issues",
  12. "licenses": [
  13. {
  14. "type": "BSD",
  15. "url": "http://opensource.org/licenses/BSD-3-Clause"
  16. },
  17. {
  18. "type": "MIT",
  19. "url": "http://opensource.org/licenses/MIT"
  20. }
  21. ],
  22. "main": "pikaday.js",
  23. "repository": {
  24. "type": "git",
  25. "url": "https://github.com/dbushell/Pikaday.git"
  26. },
  27. "optionalDependencies": {
  28. "moment": "2.x"
  29. },
  30. "devDependencies": {
  31. "mocha": "~1.18.2",
  32. "expect.js": "^0.3.1"
  33. },
  34. "testling": {
  35. "harness": "mocha",
  36. "files": "tests/*.js",
  37. "browsers": [
  38. "ie/7..latest",
  39. "chrome/latest",
  40. "firefox/3.6", "firefox/latest",
  41. "safari/latest",
  42. "opera/latest"
  43. ]
  44. }
  45. }