website/package.json
Vitaly Zdanevich f50bb091db
Add HTML formatter: js-beautify (#12)
* Add HTML formatter: js-beautify

https://www.npmjs.com/package/js-beautify
Signed-off-by: Vitaly Zdanevich <zdanevich.vitaly@ya.ru>

* package.json: dependency move to dev

Signed-off-by: Vitaly Zdanevich <zdanevich.vitaly@ya.ru>

* HTML formatter: add `"end_with_newline": true` and npm run format

Signed-off-by: Vitaly Zdanevich <zdanevich.vitaly@ya.ru>

* npm scripts ; to &&

Signed-off-by: Vitaly Zdanevich <zdanevich.vitaly@ya.ru>
2021-07-06 08:28:46 +02:00

29 lines
841 B
JSON

{
"name": "organicmaps.github.io",
"version": "1.0.0",
"description": "Tools and utils",
"main": " ",
"directories": {
"doc": "docs"
},
"devDependencies": {
"prettier": "^2.3.2",
"stylelint": "^13.13.1",
"stylelint-config-recommended": "^5.0.0",
"stylelint-config-standard": "^22.0.0",
"js-beautify": "^1.14.0"
},
"scripts": {
"format": "stylelint --fix ./sass/*.scss && prettier --write *.md content/**/*.md && js-beautify -r templates/base.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/organicmaps/organicmaps.github.io.git"
},
"author": "Organic Maps OU",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/organicmaps/organicmaps.github.io/issues"
},
"homepage": "https://github.com/organicmaps/organicmaps.github.io#readme"
}