package.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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. "dompurify": "0.8.2",
  24. "jquery": "2.1.1",
  25. "knockout": "3.4.0",
  26. "knockout.mapping": "2.4.3",
  27. "less": "2.6.1",
  28. "lodash": "3.10.1",
  29. "pubsub.js": "1.4.3",
  30. "page": "^1.7.1"
  31. },
  32. "devDependencies": {
  33. "babel-core": "6.22.1",
  34. "babel-jscs": "3.0.0-beta1",
  35. "babel-loader": "6.2.5",
  36. "babel-plugin-transform-es2015-modules-amd": "6.8.0",
  37. "babel-plugin-transform-strict-mode": "6.6.5",
  38. "babel-preset-es2015": "6.6.0",
  39. "expose-loader": "0.7.1",
  40. "grunt": "0.4.5",
  41. "grunt-contrib-less": "1.3.0",
  42. "grunt-contrib-watch": "0.6.1",
  43. "load-grunt-tasks": "3.1.0",
  44. "webpack": "1.13.1"
  45. },
  46. "scripts": {
  47. "devinstall": "npm cache clean && npm install && npm prune",
  48. "less": "./node_modules/.bin/grunt less",
  49. "watch": "./node_modules/.bin/grunt watch",
  50. "webpack": "./node_modules/.bin/webpack"
  51. },
  52. "files": []
  53. }