htmljs-parser 3.3.0 → 3.3.1
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 +15 -16
package/package.json
CHANGED
|
@@ -1,34 +1,32 @@
|
|
|
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.
|
|
5
|
-
"author": "Phillip Gates-Idem <phillip.idem@gmail.com>",
|
|
4
|
+
"version": "3.3.1",
|
|
6
5
|
"devDependencies": {
|
|
7
|
-
"@
|
|
8
|
-
"@
|
|
6
|
+
"@changesets/changelog-github": "^0.4.4",
|
|
7
|
+
"@changesets/cli": "^2.22.0",
|
|
9
8
|
"@types/benchmark": "^2.1.1",
|
|
10
9
|
"@types/degit": "^2.8.3",
|
|
11
|
-
"@types/mocha": "^9.1.
|
|
12
|
-
"@types/node": "^17.0.
|
|
13
|
-
"@typescript-eslint/eslint-plugin": "^5.
|
|
14
|
-
"@typescript-eslint/parser": "^5.
|
|
10
|
+
"@types/mocha": "^9.1.1",
|
|
11
|
+
"@types/node": "^17.0.27",
|
|
12
|
+
"@typescript-eslint/eslint-plugin": "^5.21.0",
|
|
13
|
+
"@typescript-eslint/parser": "^5.21.0",
|
|
15
14
|
"benchmark": "^2.1.4",
|
|
16
15
|
"cross-env": "^7.0.3",
|
|
17
16
|
"degit": "^2.8.4",
|
|
18
|
-
"esbuild": "0.14.
|
|
17
|
+
"esbuild": "0.14.38",
|
|
19
18
|
"esbuild-register": "^3.3.2",
|
|
20
|
-
"eslint": "^8.
|
|
19
|
+
"eslint": "^8.14.0",
|
|
21
20
|
"eslint-config-prettier": "^8.5.0",
|
|
22
21
|
"fast-glob": "^3.2.11",
|
|
23
22
|
"fixpack": "^4.0.0",
|
|
24
23
|
"husky": "^7.0.4",
|
|
25
|
-
"lint-staged": "^12.
|
|
24
|
+
"lint-staged": "^12.4.1",
|
|
26
25
|
"mocha": "^9.2.2",
|
|
27
26
|
"mocha-snap": "^4.3.0",
|
|
28
27
|
"nyc": "^15.1.0",
|
|
29
|
-
"prettier": "^2.6.
|
|
30
|
-
"
|
|
31
|
-
"typescript": "^4.6.2"
|
|
28
|
+
"prettier": "^2.6.2",
|
|
29
|
+
"typescript": "^4.6.3"
|
|
32
30
|
},
|
|
33
31
|
"exports": {
|
|
34
32
|
".": {
|
|
@@ -71,11 +69,12 @@
|
|
|
71
69
|
"mocha": "cross-env NODE_ENV=test mocha \"./src/**/__tests__/*.test.ts\"",
|
|
72
70
|
"prepare": "husky install",
|
|
73
71
|
"prepublishOnly": "npm run build",
|
|
74
|
-
"
|
|
72
|
+
"publish": "npm run build && changeset publish",
|
|
75
73
|
"report": "open ./coverage/lcov-report/index.html",
|
|
76
74
|
"test": "npm run mocha -- --watch",
|
|
77
75
|
"test:inspect": "npm test -- --inspect",
|
|
78
|
-
"test:update": "npm run mocha -- --update"
|
|
76
|
+
"test:update": "npm run mocha -- --update",
|
|
77
|
+
"version": "changeset version"
|
|
79
78
|
},
|
|
80
79
|
"types": "dist/index.d.ts"
|
|
81
80
|
}
|