-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
41 lines (41 loc) · 968 Bytes
/
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
{
"name": "posthtml-match-helper",
"description": "A helper to expand CSS selectors into PostHTML matcher objects",
"version": "2.0.2",
"license": "MIT",
"author": "Rasmus Fløe (https://github.com/phloe)",
"repository": {
"type": "git",
"url": "https://github.com/posthtml/posthtml-match-helper.git"
},
"bugs": "https://github.com/posthtml/posthtml-match-helper/issues",
"type": "module",
"exports": "./lib/index.js",
"types": "./lib/index.d.ts",
"engines": {
"node": ">=18"
},
"scripts": {
"dev": "vitest",
"test": "vitest run --coverage",
"lint": "biome lint ./lib",
"pretest": "npm run lint",
"release": "npx np"
},
"files": [
"lib"
],
"keywords": [
"posthtml",
"posthtml-helper",
"posthtml-matcher"
],
"peerDependencies": {
"posthtml": "^0.16.6"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@vitest/coverage-v8": "^2.0.0",
"vitest": "^2.0.0"
}
}