djLint/package.json

65 lines
1.5 KiB
JSON
Raw Normal View History

2022-02-18 23:01:16 +00:00
{
"name": "djlint",
2022-04-07 13:27:52 +00:00
"version": "0.7.6",
2022-02-18 23:01:16 +00:00
"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": [
2022-02-18 23:09:31 +00:00
"src",
2022-02-18 23:12:00 +00:00
"bin",
"requirements.txt"
2022-02-18 23:01:16 +00:00
],
"bin": {
"djlint": "./bin/index.js"
},
"scripts": {
2022-04-05 16:09:29 +00:00
"postinstall": "node ./bin/install.js",
"commit": "git add . && cz"
2022-02-18 23:01:16 +00:00
},
"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": {
2022-04-05 16:09:29 +00:00
"yargs": "^17.4.0"
},
"devDependencies": {
2022-04-07 13:27:52 +00:00
"cz-conventional-changelog": "3.3.0"
2022-04-05 16:09:29 +00:00
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
2022-02-18 23:01:16 +00:00
}
}