-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
52 lines (52 loc) · 1.22 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
{
"name": "posthtml-attrs-parser",
"version": "1.1.2",
"description": "PostHTML helper that provides a better API to work with tag attributes.",
"type": "module",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "dist/index.cjs",
"module": "./dist/index.mjs",
"files": [
"dist"
],
"author": "Kirill Maltsev <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "vitest",
"release": "npx np",
"build": "unbuild",
"prepack": "unbuild",
"lint": "biome lint ./lib",
"pretest": "npm run lint",
"test": "vitest run --coverage"
},
"keywords": [
"posthtml",
"posthtml-plugin",
"html",
"post-processor",
"parser",
"attributes"
],
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@vitest/coverage-v8": "^2.0.1",
"posthtml": "^0.16.6",
"unbuild": "^3.0.1",
"vitest": "^2.0.1"
},
"engines": {
"node": ">=16.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/posthtml/posthtml-attrs-parser.git"
},
"bugs": "https://github.com/posthtml/posthtml-attrs-parser/issues",
"homepage": "https://github.com/posthtml/posthtml-attrs-parser"
}