package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "name": "jquery.cookie",
  3. "version": "1.4.1",
  4. "description": "A simple, lightweight jQuery plugin for reading, writing and deleting cookies.",
  5. "main": "jquery.cookie.js",
  6. "directories": {
  7. "test": "test"
  8. },
  9. "scripts": {
  10. "test": "grunt"
  11. },
  12. "repository": {
  13. "type": "git",
  14. "url": "git://github.com/carhartl/jquery-cookie.git"
  15. },
  16. "author": "Klaus Hartl",
  17. "license": "MIT",
  18. "gitHead": "bd3c9713222bace68d25fe2128c0f8633cad1269",
  19. "readmeFilename": "README.md",
  20. "devDependencies": {
  21. "grunt": "~0.4.1",
  22. "grunt-contrib-jshint": "~0.4.0",
  23. "grunt-contrib-uglify": "~0.2.0",
  24. "grunt-contrib-qunit": "~0.2.0",
  25. "grunt-contrib-watch": "~0.3.0",
  26. "grunt-compare-size": "~0.4.0",
  27. "grunt-saucelabs": "~4.1.1",
  28. "grunt-contrib-connect": "~0.5.0",
  29. "gzip-js": "~0.3.0"
  30. },
  31. "volo": {
  32. "url": "https://raw.github.com/carhartl/jquery-cookie/v{version}/jquery.cookie.js"
  33. },
  34. "jspm": {
  35. "main": "jquery.cookie",
  36. "files": ["jquery.cookie.js"],
  37. "buildConfig": {
  38. "uglify": true
  39. }
  40. },
  41. "jam": {
  42. "dependencies": {
  43. "jquery": ">=1.2"
  44. },
  45. "main": "jquery.cookie.js",
  46. "include": [
  47. "jquery.cookie.js"
  48. ]
  49. }
  50. }