@asamuzakjp/dom-selector 0.16.4 → 0.18.0
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 +6 -5
- package/src/js/matcher.js +1340 -1239
- package/types/js/matcher.d.ts +31 -29
package/package.json
CHANGED
|
@@ -25,25 +25,26 @@
|
|
|
25
25
|
"devDependencies": {
|
|
26
26
|
"@types/css-tree": "^2.3.1",
|
|
27
27
|
"benchmark": "^2.1.4",
|
|
28
|
-
"c8": "^
|
|
28
|
+
"c8": "^8.0.0",
|
|
29
29
|
"chai": "^4.3.7",
|
|
30
|
-
"eslint": "^8.
|
|
30
|
+
"eslint": "^8.43.0",
|
|
31
31
|
"eslint-config-standard": "^17.1.0",
|
|
32
32
|
"eslint-plugin-jsdoc": "^46.2.6",
|
|
33
33
|
"eslint-plugin-regexp": "^1.15.0",
|
|
34
34
|
"eslint-plugin-unicorn": "^47.0.0",
|
|
35
35
|
"jsdom": "^22.1.0",
|
|
36
|
+
"linkedom": "^0.14.26",
|
|
36
37
|
"mocha": "^10.2.0",
|
|
37
38
|
"nwsapi": "^2.2.5",
|
|
38
|
-
"sinon": "^15.
|
|
39
|
+
"sinon": "^15.2.0",
|
|
39
40
|
"typescript": "^5.1.3"
|
|
40
41
|
},
|
|
41
42
|
"scripts": {
|
|
42
|
-
"bench": "node benchmark/
|
|
43
|
+
"bench": "node benchmark/benchmark.js",
|
|
43
44
|
"build": "npm run tsc && npm run lint && npm test",
|
|
44
45
|
"lint": "eslint --fix .",
|
|
45
46
|
"test": "c8 --reporter=text mocha --exit test/**/*.test.js",
|
|
46
47
|
"tsc": "npx tsc"
|
|
47
48
|
},
|
|
48
|
-
"version": "0.
|
|
49
|
+
"version": "0.18.0"
|
|
49
50
|
}
|