djLint/package.json
semantic-release-bot 54f238967e chore(release): 1.0.0 [skip ci]
# 1.0.0 (2022-04-25)

### Bug Fixes

* broken link "djlint documentation" in README ([2489d55](2489d55f23))
* **stdin and gitignore:** updated to prevent gitignore from skipping std temp paths ([8e0b4b1](8e0b4b1b41)), closes [#224](https://github.com/Riverside-Healthcare/djLint/issues/224)

### Features

* Add `--version` option ([bb9b734](bb9b734287))
2022-04-25 14:09:37 +00:00

73 lines
1.9 KiB
JSON

{
"name": "djlint",
"version": "1.0.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.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}