mirror of
https://github.com/Hopiu/djLint.git
synced 2026-03-17 05:50:24 +00:00
# [1.3.0](https://github.com/Riverside-Healthcare/djLint/compare/v1.2.1...v1.3.0) (2022-06-30) ### Bug Fixes * **h025:** fixes rule H025 where tags have curly hash ([e4fe62f](e4fe62f52e)), closes [#270](https://github.com/Riverside-Healthcare/djLint/issues/270) ### Features * **new option:** added option to attempt to keep blank lines in templates ([bbcf54a](bbcf54a0f0)), closes [#261](https://github.com/Riverside-Healthcare/djLint/issues/261)
73 lines
1.9 KiB
JSON
73 lines
1.9 KiB
JSON
{
|
|
"name": "djlint",
|
|
"version": "1.3.0",
|
|
"description": "HTML Template Linter and Formatter",
|
|
"private": true,
|
|
"main": "./bin/index.js",
|
|
"directories": {
|
|
"doc": "docs",
|
|
"test": "tests"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/Riverside-Healthcare/djLint.git"
|
|
},
|
|
"keywords": [
|
|
"html template linter",
|
|
"html template formatter",
|
|
"jinja template linter",
|
|
"jinja template formatter",
|
|
"nunjucks template linter",
|
|
"nunjucks template formatter",
|
|
"twig template linter",
|
|
"twig template formatter",
|
|
"handlebars template linter",
|
|
"handlebars template formatter",
|
|
"mustache template linter",
|
|
"mustache template formatter",
|
|
"golang template linter",
|
|
"golang template formatter",
|
|
"angular template linter",
|
|
"angular template formatter"
|
|
],
|
|
"files": [
|
|
"src",
|
|
"bin",
|
|
"requirements.txt"
|
|
],
|
|
"bin": {
|
|
"djlint": "./bin/index.js"
|
|
},
|
|
"scripts": {
|
|
"postinstall": "node ./bin/install.js",
|
|
"commit": "git add . && pre-commit run && git add . && cz --no-verify"
|
|
},
|
|
"author": {
|
|
"name": "Christopher Pickering",
|
|
"url": "https://going.bg"
|
|
},
|
|
"license": "GPL-3.0-or-later",
|
|
"bugs": {
|
|
"url": "https://github.com/Riverside-Healthcare/djLint/issues"
|
|
},
|
|
"homepage": "https://djlint.com",
|
|
"dependencies": {
|
|
"yargs": "17.4.0"
|
|
},
|
|
"devDependencies": {
|
|
"@semantic-release/changelog": "6.0.1",
|
|
"@semantic-release/commit-analyzer": "9.0.2",
|
|
"@semantic-release/exec": "6.0.3",
|
|
"@semantic-release/git": "10.0.1",
|
|
"@semantic-release/github": "8.0.4",
|
|
"@semantic-release/npm": "9.0.1",
|
|
"@semantic-release/release-notes-generator": "10.0.3",
|
|
"cz-conventional-changelog": "3.3.0",
|
|
"semantic-release": "19.0.3"
|
|
},
|
|
"config": {
|
|
"commitizen": {
|
|
"path": "./node_modules/cz-conventional-changelog"
|
|
}
|
|
}
|
|
}
|