package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "name": "sessiontimeout-bootstrap",
  3. "version": "1.0.3",
  4. "description": "After a set amount of time, a dialog is shown to the user with the option to either log out now, or stay connected. If log out now is selected, the page is redirected to a logout URL. If stay connected is selected, a keep-alive URL is requested through AJAX. If no options is selected after another set amount of time, the page is automatically redirected to a timeout URL. This fork uses Bootstrap's modal instead of upstream's jQuery UI modal.",
  5. "main": "jquery.sessionTimeout.js",
  6. "scripts": {
  7. "test": "grunt test"
  8. },
  9. "repository": {
  10. "type": "git",
  11. "url": "https://github.com/maxfierke/jquery-sessionTimeout-bootstrap.git"
  12. },
  13. "keywords": [
  14. "alert",
  15. "ajax",
  16. "bootstrap"
  17. ],
  18. "author": "Travis Horn",
  19. "contributors": [
  20. {
  21. "name": "Max Fierke",
  22. "email": "max@maxfierke.com",
  23. "url": "http://www.maxfierke.com"
  24. }
  25. ],
  26. "license": "MIT",
  27. "bugs": {
  28. "url": "https://github.com/maxfierke/jquery-sessionTimeout-bootstrap/issues"
  29. },
  30. "devDependencies": {
  31. "grunt": "~0.4.1",
  32. "grunt-contrib-jshint": "~0.6.0",
  33. "grunt-contrib-uglify": "~0.2.2"
  34. }
  35. }