package.json 538 B

1234567891011121314151617
  1. {
  2. "name": "hugo-lamp",
  3. "version": "1.0.2",
  4. "description": "A light responsive Hugo AMP theme for blogger",
  5. "main": "index.js",
  6. "scripts": {
  7. "start": "hugo server -D",
  8. "build": "hugo && npm run optimize:html",
  9. "deploy": "npm run build && firebase deploy",
  10. "optimize:html": "./node_modules/.bin/html-minifier --input-dir ./public/ --output-dir ./public/ --file-ext html -c ./.html-minifier-config.json"
  11. },
  12. "author": "Huy Nguyen",
  13. "license": "MIT",
  14. "devDependencies": {
  15. "html-minifier": "^3.5.16"
  16. }
  17. }