bump package version to 1.6.1
[squeep-html-template-helper] / package.json
1 {
2 "name": "@squeep/html-template-helper",
3 "version": "1.6.1",
4 "description": "Helper functions for generating HTML pages and boilerplate; intended for use in Squeep Framework Applications.",
5 "main": "index.js",
6 "files": [
7 "lib/**",
8 "test/lint-html.js"
9 ],
10 "scripts": {
11 "audit": "npm audit",
12 "coverage": "nyc npm test",
13 "coverage-check": "nyc check-coverage",
14 "eslint": "eslint index.js lib test/lint-html.js",
15 "test": "mocha --recursive"
16 },
17 "repository": {
18 "type": "git",
19 "url": "https://git.squeep.com/squeep-html-template-helper/"
20 },
21 "keywords": [
22 "HTML"
23 ],
24 "engines": {
25 "node": ">=14.13.1"
26 },
27 "author": "Justin Wind <jwind-npm@squeep.com>",
28 "license": "ISC",
29 "pre-commit": [
30 "audit",
31 "eslint",
32 "coverage",
33 "coverage-check"
34 ],
35 "devDependencies": {
36 "@squeep/eslint-config": "^1",
37 "eslint": "^9",
38 "html-validate": "^8",
39 "mocha": "^10",
40 "nyc": "^15",
41 "pre-commit": "^1"
42 },
43 "dependencies": {
44 "@squeep/lazy-property": "^1"
45 }
46 }