package.json 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "bootstrap-multiselect",
  3. "version": "0.9.15",
  4. "description": "JQuery multiselect plugin based on Twitter Bootstrap.",
  5. "main": "dist/js/bootstrap-multiselect.js",
  6. "directories": {
  7. "doc": "docs",
  8. "test": "tests"
  9. },
  10. "repository": {
  11. "type": "git",
  12. "url": "https://github.com/davidstutz/bootstrap-multiselect"
  13. },
  14. "keywords": [
  15. "js",
  16. "css",
  17. "less",
  18. "bootstrap",
  19. "jquery",
  20. "multiselect"
  21. ],
  22. "author": "David Stutz",
  23. "license": "Apache License, Version 2.0",
  24. "bugs": {
  25. "url": "https://github.com/davidstutz/bootstrap-multiselect/issues"
  26. },
  27. "homepage": "http://davidstutz.de/bootstrap-multiselect/",
  28. "scripts": {
  29. "test": "karma start tests/karma.conf.js --single-run"
  30. },
  31. "dependencies": {
  32. "jquery": "~2.1.3"
  33. },
  34. "devDependencies": {
  35. "jasmine-core": "*",
  36. "karma": "*",
  37. "karma-cli": "*",
  38. "karma-jasmine": "*",
  39. "karma-phantomjs-launcher": "*",
  40. "karma-chrome-launcher": "*"
  41. },
  42. "types": "./types/index.d.ts"
  43. }