pidgin/nest

Move build info into a header comment.

2019-08-19, Elliott Sales de Andrade
c3a002e9a2b4
Move build info into a header comment.

No user is ever going to read this, and it's doubtful that any developer
will either once we're sure that deployment is working correctly.

Also, dropped the Hugo version from the comment, since that's part of
the tags.
{
"private": true,
"dependencies": {
"js-beautify": "^1.8.9",
"js-yaml": "^3.13.1",
"svgo": "^1.1.1"
},
"devDependencies": {
"cspell": "^4.0.23",
"differencify": "^1.5.3",
"front-matter": "^3.0.1",
"prettier": "^1.18.2",
"prettier-plugin-toml": "^0.3.1"
},
"scripts": {
"regression": "node tools/visual-diff.js",
"tidy": "node tools/pre-prod",
"lint": "prettier --write ./**/*.{js,md,toml,css,json}",
"docker": "npm run docker:build && npm run docker:run",
"docker:build": "docker build -t pidgin/nest:latest .",
"docker:run": "docker run -it --rm -p 3000:3000 pidgin/nest:latest",
"hugo": "hugo -s hugo -D -v --verboseLog --i18n-warnings",
"hugo:new": "hugo -s hugo new",
"hugo:server": "hugo server -s hugo -D --disableFastRender -v --verboseLog --noHTTPCache --i18n-warnings",
"spelling": "cspell \"**/*\"",
"migration-tracker": "node tools/migrate-tracker.js"
}
}