package.json 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. {
  2. "name": "orgchart",
  3. "version": "2.1.3",
  4. "description": "Simple and direct organization chart(tree-like hierarchy) plugin based on pure DOM and jQuery.",
  5. "main": "./dist/js/jquery.orgchart.min.js",
  6. "style": [
  7. "./dist/css/jquery.orgchart.min.css"
  8. ],
  9. "scripts": {
  10. "test": "gulp e2e-tests",
  11. "build": "gulp build",
  12. "start": "gulp serve"
  13. },
  14. "repository": {
  15. "type": "git",
  16. "url": "https://github.com/dabeng/OrgChart.git"
  17. },
  18. "keywords": [
  19. "jquery",
  20. "plugin",
  21. "organization",
  22. "chart",
  23. "orgchart",
  24. "tree",
  25. "tree-like",
  26. "tree-view"
  27. ],
  28. "author": "dabeng <dabeng413@gmail.com>",
  29. "license": "MIT",
  30. "bugs": {
  31. "url": "https://github.com/dabeng/OrgChart/issues"
  32. },
  33. "homepage": "https://github.com/dabeng/OrgChart#readme",
  34. "dependencies": {
  35. "font-awesome": "^4.6.3",
  36. "html2canvas": "^0.5.0-beta4",
  37. "jquery": "^3.2.1",
  38. "jquery-mockjax": "^2.2.0",
  39. "jspdf": "^1.3.5"
  40. },
  41. "devDependencies": {
  42. "browser-sync": "^2.18.13",
  43. "chai": "^4.1.2",
  44. "del": "^3.0.0",
  45. "gulp": "^3.9.1",
  46. "gulp-clean-css": "^3.8.0",
  47. "gulp-csslint": "^1.0.0",
  48. "gulp-eslint": "^4.0.0",
  49. "gulp-inject": "^4.2.0",
  50. "gulp-mocha": "^4.3.1",
  51. "gulp-rename": "^1.2.2",
  52. "gulp-sourcemaps": "^2.6.1",
  53. "gulp-testcafe": "^0.9.2",
  54. "gulp-uglify": "^3.0.0",
  55. "jsdom": "^11.2.0",
  56. "jsdom-global": "^3.0.2",
  57. "merge-stream": "^1.0.1",
  58. "mocha": "^3.4.2",
  59. "sinon": "^4.1.2",
  60. "sinon-chai": "^2.14.0",
  61. "testcafe": "^0.18.5"
  62. }
  63. }