djLint/package.json
semantic-release-bot 84249ff69f chore(release): 1.12.0 [skip ci]
# [1.12.0](https://github.com/Riverside-Healthcare/djLint/compare/v1.11.1...v1.12.0) (2022-08-24)

### Bug Fixes

* **h006:** prevented false positives on H006 ([215bd23](215bd23190)), closes [#344](https://github.com/Riverside-Healthcare/djLint/issues/344) [#333](https://github.com/Riverside-Healthcare/djLint/issues/333)
* **h012:** prevent H012 from matching the contents of tags or attributes ([4480cff](4480cff832)), closes [#348](https://github.com/Riverside-Healthcare/djLint/issues/348)
* **t001:** fixed false positive on multiline template tags ([ea76672](ea766722a5)), closes [#350](https://github.com/Riverside-Healthcare/djLint/issues/350)

### Features

* **h021:** allow inline styles that contain template syntax ([f1a39ed](f1a39ed289)), closes [#351](https://github.com/Riverside-Healthcare/djLint/issues/351)
* **t002:** allow variables names to be used in the {% extends tag ([a5d96e7](a5d96e7a2d)), closes [#349](https://github.com/Riverside-Healthcare/djLint/issues/349)
2022-08-24 14:50:36 +00:00

99 lines
2.5 KiB
JSON

{
"name": "djlint",
"version": "1.12.0",
"description": "HTML Template Linter and Formatter",
"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": [
"bin"
],
"bin": {
"djlint": "./bin/index.js"
},
"scripts": {
"format": "prettier --config .prettierrc \"{bin,docs}/**/*.{ts,css,less,scss,js,json,md,yaml,html}\" --write",
"postinstall": "python3 -m pip install --upgrade djlint",
"pre-commit": "lint-staged",
"commit": "git add . && pre-commit run; npm run pre-commit && cz --no-verify",
"test": "xo"
},
"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": {
"python-shell": "^3.0.1",
"yargs": "17.5.1"
},
"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.5",
"@semantic-release/npm": "9.0.1",
"@semantic-release/release-notes-generator": "10.0.3",
"cz-conventional-changelog": "3.3.0",
"lint-staged": "13.0.3",
"semantic-release": "19.0.3",
"xo": "0.51.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"{bin,docs}/**/*.{ts,css,less,scss,js,json,md,yaml,html}": [
"npm run format"
]
},
"xo": {
"space": true,
"prettier": true,
"rules": {
"unicorn/prefer-module": "off",
"no-var": "warn",
"camelcase": "warn",
"unicorn/filename-case": "warn",
"unicorn/no-process-exit": "off"
},
"globals": [
"document",
"window",
"data",
"debounce",
"history"
]
}
}