htmljs-parser 3.3.5 → 3.3.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +16 -16
package/package.json
CHANGED
|
@@ -1,32 +1,31 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "htmljs-parser",
|
|
3
3
|
"description": "An HTML parser recognizes content and string placeholders and allows JavaScript expressions as attribute values",
|
|
4
|
-
"version": "3.3.
|
|
4
|
+
"version": "3.3.6",
|
|
5
5
|
"devDependencies": {
|
|
6
6
|
"@changesets/changelog-github": "^0.4.4",
|
|
7
7
|
"@changesets/cli": "^2.22.0",
|
|
8
|
-
"@types/benchmark": "^2.1.1",
|
|
9
8
|
"@types/degit": "^2.8.3",
|
|
10
9
|
"@types/mocha": "^9.1.1",
|
|
11
|
-
"@types/node": "^17.0.
|
|
12
|
-
"@typescript-eslint/eslint-plugin": "^5.
|
|
13
|
-
"@typescript-eslint/parser": "^5.
|
|
14
|
-
"benchmark": "^2.1.4",
|
|
10
|
+
"@types/node": "^17.0.38",
|
|
11
|
+
"@typescript-eslint/eslint-plugin": "^5.27.0",
|
|
12
|
+
"@typescript-eslint/parser": "^5.27.0",
|
|
15
13
|
"cross-env": "^7.0.3",
|
|
16
14
|
"degit": "^2.8.4",
|
|
17
|
-
"esbuild": "0.14.
|
|
18
|
-
"
|
|
19
|
-
"eslint": "^8.14.0",
|
|
15
|
+
"esbuild": "0.14.42",
|
|
16
|
+
"eslint": "^8.16.0",
|
|
20
17
|
"eslint-config-prettier": "^8.5.0",
|
|
21
18
|
"fast-glob": "^3.2.11",
|
|
22
19
|
"fixpack": "^4.0.0",
|
|
23
|
-
"husky": "^
|
|
24
|
-
"lint-staged": "^
|
|
25
|
-
"
|
|
20
|
+
"husky": "^8.0.1",
|
|
21
|
+
"lint-staged": "^13.0.0",
|
|
22
|
+
"mitata": "^0.1.1",
|
|
23
|
+
"mocha": "^10.0.0",
|
|
26
24
|
"mocha-snap": "^4.3.0",
|
|
27
25
|
"nyc": "^15.1.0",
|
|
28
26
|
"prettier": "^2.6.2",
|
|
29
|
-
"
|
|
27
|
+
"tsx": "^3.4.2",
|
|
28
|
+
"typescript": "^4.7.2"
|
|
30
29
|
},
|
|
31
30
|
"exports": {
|
|
32
31
|
".": {
|
|
@@ -59,8 +58,9 @@
|
|
|
59
58
|
"url": "https://github.com/marko-js/htmljs-parser.git"
|
|
60
59
|
},
|
|
61
60
|
"scripts": {
|
|
62
|
-
"bench": "
|
|
63
|
-
"build": "tsc -b &&
|
|
61
|
+
"bench": "tsx bench.mts",
|
|
62
|
+
"build": "tsc -b && tsx build.mts",
|
|
63
|
+
"change": "changeset add",
|
|
64
64
|
"ci:test": "nyc npm run mocha -- --forbid-only",
|
|
65
65
|
"format": "npm run lint:eslint -- --fix && npm run lint:prettier -- --write && (fixpack || true)",
|
|
66
66
|
"lint": "tsc -b && npm run lint:eslint && npm run lint:prettier -- -l && fixpack",
|
|
@@ -68,7 +68,7 @@
|
|
|
68
68
|
"lint:prettier": "prettier \"./**/*{.ts,.js,.json,.md,.yml,rc}\"",
|
|
69
69
|
"mocha": "cross-env NODE_ENV=test mocha \"./src/**/__tests__/*.test.ts\"",
|
|
70
70
|
"prepare": "husky install",
|
|
71
|
-
"
|
|
71
|
+
"release": "npm run build && changeset publish",
|
|
72
72
|
"report": "open ./coverage/lcov-report/index.html",
|
|
73
73
|
"test": "npm run mocha -- --watch",
|
|
74
74
|
"test:inspect": "npm test -- --inspect",
|