package.json 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {
  2. "name": "bootbox",
  3. "version": "5.5.2",
  4. "description": "Wrappers for JavaScript alert(), confirm(), prompt(), and other flexible dialogs using the Bootstrap framework",
  5. "directories": {
  6. "test": "tests"
  7. },
  8. "scripts": {
  9. "test": "./node_modules/.bin/karma start"
  10. },
  11. "repository": {
  12. "type": "git",
  13. "url": "git://github.com/makeusabrew/bootbox.git"
  14. },
  15. "author": "Nick Payne <nick@kurai.co.uk>",
  16. "license": "MIT",
  17. "readmeFilename": "README.md",
  18. "main": "bootbox.all.js",
  19. "files": [
  20. "dist/*.js",
  21. "bootbox.js",
  22. "bootbox.locales.js",
  23. "bootbox.all.js"
  24. ],
  25. "devDependencies": {
  26. "chai": "^4.2.0",
  27. "eslint": "^6.7.1",
  28. "eslint-config-standard": "^14.1.0",
  29. "eslint-plugin-import": "^2.18.2",
  30. "eslint-plugin-node": "^10.0.0",
  31. "eslint-plugin-promise": "^4.2.1",
  32. "eslint-plugin-standard": "^4.0.1",
  33. "grunt": "^1.0.4",
  34. "grunt-contrib-jshint": "^2.1.0",
  35. "grunt-contrib-uglify": "^4.0.1",
  36. "grunt-karma": "^3.0.2",
  37. "karma": "^4.4.1",
  38. "karma-chai": "^0.1.0",
  39. "karma-coverage": "^2.0.3",
  40. "karma-junit-reporter": "^2.0.1",
  41. "karma-mocha": "^1.3.0",
  42. "karma-phantomjs-launcher": "^1.0.4",
  43. "karma-sinon-chai": "^2.0.2",
  44. "karma-webpack": "^4.0.2",
  45. "lolex": "5.1.1",
  46. "mocha": "^6.2.2",
  47. "sinon": "^7.5.0",
  48. "sinon-chai": "^3.3.0",
  49. "uglify-js": "^3.7.0",
  50. "webpack": "^4.41.2"
  51. },
  52. "dependencies": {
  53. "bootstrap": "^4.4.0",
  54. "jquery": "^3.5.1",
  55. "popper.js": "^1.16.0"
  56. }
  57. }