package.json 765 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "name": "hue",
  3. "version": "4.0.0",
  4. "description": "...",
  5. "homepage": "...",
  6. "repository": {
  7. "type": "git",
  8. "url": "..."
  9. },
  10. "author": "Hue, Inc.",
  11. "contributors": [
  12. "Enrico Berti <enrico.berti@cloudera.com>",
  13. "Johan Ahlen <johan.ahlen@cloudera.com>"
  14. ],
  15. "license": "Apache",
  16. "private": true,
  17. "engines": {
  18. "node": ">=0.10.0"
  19. },
  20. "dependencies": {
  21. "less": "2.6.1"
  22. },
  23. "devDependencies": {
  24. "grunt": "0.4.5",
  25. "grunt-contrib-less": "1.3.0",
  26. "grunt-contrib-watch": "0.6.1",
  27. "load-grunt-tasks": "3.1.0"
  28. },
  29. "scripts": {
  30. "devinstall": "npm cache clean && npm install && npm prune",
  31. "less": "./node_modules/.bin/grunt less",
  32. "watch": "./node_modules/.bin/grunt watch"
  33. },
  34. "files": []
  35. }