package.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. {
  2. "name": "hue",
  3. "version": "4.0.0",
  4. "description": "Hue is an open source Web interface for analyzing data with Hadoop and Spark",
  5. "homepage": "http://gethue.com",
  6. "repository": {
  7. "type": "git",
  8. "url": "https://github.com/cloudera/hue"
  9. },
  10. "author": "Cloudera, Inc.",
  11. "contributors": [
  12. "Andrew Yao <andyao@cloudera.com>",
  13. "Enrico Berti <enrico.berti@cloudera.com>",
  14. "Johan Ahlen <johan.ahlen@cloudera.com>"
  15. ],
  16. "license": "Apache",
  17. "private": true,
  18. "engines": {
  19. "node": ">=0.10.0"
  20. },
  21. "dependencies": {
  22. "bootstrap": "3.3.6",
  23. "commander": "^2.16.0",
  24. "dompurify": "0.8.2",
  25. "jquery": "2.1.1",
  26. "knockout": "3.4.0",
  27. "knockout.mapping": "2.4.3",
  28. "less": "2.6.1",
  29. "libxmljs": "^0.19.0",
  30. "lodash": "3.10.1",
  31. "minimist": "^1.2.0",
  32. "mkdirp": "^0.5.1",
  33. "page": "^1.7.1",
  34. "pubsub.js": "1.4.3",
  35. "xml2js": "^0.4.19"
  36. },
  37. "devDependencies": {
  38. "babel-core": "6.22.1",
  39. "babel-jscs": "3.0.0-beta1",
  40. "babel-loader": "6.2.5",
  41. "babel-plugin-transform-es2015-modules-amd": "6.8.0",
  42. "babel-plugin-transform-strict-mode": "6.6.5",
  43. "babel-preset-es2015": "6.6.0",
  44. "expose-loader": "0.7.1",
  45. "grunt": "0.4.5",
  46. "grunt-contrib-less": "1.3.0",
  47. "grunt-contrib-uglify": "^3.0.1",
  48. "grunt-contrib-watch": "0.6.1",
  49. "load-grunt-tasks": "3.1.0",
  50. "webpack": "1.13.1"
  51. },
  52. "scripts": {
  53. "devinstall": "npm cache clean && npm install && npm prune",
  54. "less": "./node_modules/.bin/grunt less",
  55. "watch": "./node_modules/.bin/grunt watch",
  56. "webpack": "./node_modules/.bin/webpack"
  57. },
  58. "files": []
  59. }