-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
72 lines (72 loc) · 1.59 KB
/
package.json
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
72
{
"name": "jlto",
"version": "1.4.2",
"description": "Nodejs-based tool for optimizing Jinja like templates",
"keywords": [
"jinja",
"optimizer",
"liquid",
"min",
"jinjava",
"minify",
"nunjucks",
"minifier",
"twig",
"compressor",
"django"
],
"homepage": "https://github.com/dmytro-krekota/jlto",
"bugs": {
"url": "https://github.com/dmytro-krekota/jlto/issues",
"email": "[email protected]"
},
"author": {
"name": "Dmytro Krekota",
"email": "[email protected]",
"url": "https://github.com/dmytro-krekota"
},
"repository": {
"type": "git",
"url": "git://github.com/dmytro-krekota/jlto.git"
},
"license": "MIT",
"main": "index.js",
"scripts": {
"lint": "eslint test lib --max-warnings=0 --fix",
"test": "npm run lint && jest --coverage",
"ci-testing": "jest --coverage && cat ./coverage/lcov.info | coveralls",
"prettier": "prettier \"{test,lib}/**/*.js\" --write"
},
"engines": {
"node": ">=16"
},
"pre-commit": [
"prettier",
"lint"
],
"jest": {
"testEnvironment": "node",
"testMatch": [
"**/test/**/*.spec.js"
],
"collectCoverageFrom": [
"**/lib/**/*.js"
]
},
"devDependencies": {
"chai": "4.3.6",
"coveralls": "3.1.1",
"eslint": "8.21.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "28.1.3",
"liquid": "5.1.1",
"nunjucks": "3.2.3",
"pre-commit": "1.2.2",
"prettier": "2.7.1",
"twig": "1.15.4"
},
"dependencies": {
"html-minifier": "4.0.0"
}
}