package.json 703 B

12345678910111213141516171819
  1. {
  2. "name": "hue-docs-site",
  3. "version": "1.0.0",
  4. "description": "NPM dependency management for docs",
  5. "main": "",
  6. "scripts": {
  7. "test": "echo \"Error: no test specified\" && exit 1",
  8. "clean-static": "rm -rf static/js/gethue",
  9. "copy-components": "mkdir -p static/js/gethue/components && cp -r node_modules/gethue/lib/components/*.js static/js/gethue/components/",
  10. "copy-parsers": "mkdir -p static/js/gethue/parsers && cp -r node_modules/gethue/lib/parsers/*.js static/js/gethue/parsers/",
  11. "update-static": "npm run clean-static && npm run copy-components && npm run copy-parsers"
  12. },
  13. "author": "",
  14. "license": "Apache-2.0",
  15. "dependencies": {
  16. "gethue": "4.8.1"
  17. }
  18. }