package.json 925 B

123456789101112131415161718192021222324252627282930313233343536
  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. "less": "2.6.1"
  23. },
  24. "devDependencies": {
  25. "grunt": "0.4.5",
  26. "grunt-contrib-less": "1.3.0",
  27. "grunt-contrib-watch": "0.6.1",
  28. "load-grunt-tasks": "3.1.0"
  29. },
  30. "scripts": {
  31. "devinstall": "npm cache clean && npm install && npm prune",
  32. "less": "./node_modules/.bin/grunt less",
  33. "watch": "./node_modules/.bin/grunt watch"
  34. },
  35. "files": []
  36. }