package.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. {
  2. "name": "jstree",
  3. "title": "jsTree",
  4. "description": "jQuery tree plugin",
  5. "version": "3.2.0",
  6. "homepage": "http://jstree.com",
  7. "main": "./dist/jstree.js",
  8. "author": {
  9. "name": "Ivan Bozhanov",
  10. "email": "jstree@jstree.com",
  11. "url": "http://vakata.com"
  12. },
  13. "repository": {
  14. "type": "git",
  15. "url": "git://github.com/vakata/jstree.git"
  16. },
  17. "bugs": {
  18. "url": "https://github.com/vakata/jstree/issues"
  19. },
  20. "license": "MIT",
  21. "licenses": [
  22. {
  23. "type": "MIT",
  24. "url": "https://github.com/vakata/jstree/blob/master/LICENSE-MIT"
  25. }
  26. ],
  27. "keywords": [],
  28. "devDependencies": {
  29. "dox": "~0.4.4",
  30. "grunt": "~0.4.0",
  31. "grunt-contrib-concat": "*",
  32. "grunt-contrib-copy": "*",
  33. "grunt-contrib-imagemin": "~0.4.0",
  34. "grunt-contrib-jshint": "*",
  35. "grunt-contrib-less": "~0.8.2",
  36. "grunt-contrib-qunit": "~v0.3.0",
  37. "grunt-contrib-uglify": "*",
  38. "grunt-contrib-watch": "~0.5.3",
  39. "grunt-phantomcss-gitdiff": "0.0.7",
  40. "grunt-resemble-cli": "0.0.8",
  41. "grunt-text-replace": "~0.3.11"
  42. },
  43. "dependencies": {
  44. "jquery": ">=1.9.1"
  45. },
  46. "npmName": "jstree",
  47. "npmFileMap": [
  48. {
  49. "basePath": "/dist/",
  50. "files": [
  51. "jstree.min.js",
  52. "themes/**/*.png",
  53. "themes/**/*.gif",
  54. "themes/**/*.min.css"
  55. ]
  56. }
  57. ]
  58. }