-
-
Notifications
You must be signed in to change notification settings - Fork 118
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.05 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 2.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "djlint",
"version": "1.31.0",
"description": "HTML Template Linter and Formatter",
"directories": {
"doc": "docs",
"test": "tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Riverside-Healthcare/djLint.git"
},
"files": [],
"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"
],
"scripts": {
"format": "prettier --config .prettierrc \"{bin,docs}/**/*.{ts,css,less,scss,js,json,md,yaml,html}\" --write",
"postinstall": "python3 -m pip install --upgrade djlint==1.31.0",
"pre-commit": "lint-staged",
"commit": "git add . && pre-commit run; git add . && 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",
"devDependencies": {
"@semantic-release/changelog": "6.0.3",
"@semantic-release/commit-analyzer": "10.0.1",
"@semantic-release/exec": "6.0.3",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "9.0.3",
"@semantic-release/npm": "10.0.3",
"@semantic-release/release-notes-generator": "11.0.3",
"cz-conventional-changelog": "3.3.0",
"lint-staged": "13.2.2",
"prettier": "^2.8.8",
"semantic-release": "21.0.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"{bin,docs}/**/*.{ts,css,less,scss,js,json,md,yaml,html}": [
"npm run format"
]
}
}