-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
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-postcss",
"version": "1.0.3",
"description": "Use PostCSS with PostHTML",
"license": "MIT",
"repository": "posthtml/posthtml-postcss",
"author": "Ivan Voischev <voischev.ivan@ya.ru>",
"bugs": "https://github.com/posthtml/posthtml-postcss/issues",
"homepage": "https://github.com/posthtml/posthtml-postcss",
"type": "module",
"exports": "./lib/index.js",
"engines": {
"node": ">=18"
},
"scripts": {
"dev": "vitest",
"release": "npx np",
"pretest": "npm run lint",
"lint": "biome lint ./lib",
"test": "vitest run --coverage",
"postrelease": "npm run version",
"version": "conventional-changelog -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md"
},
"files": [
"lib"
],
"keywords": [
"posthtml",
"postcss",
"plugin",
"html",
"xml",
"css",
"processor",
"transform",
"manipulation",
"preprocessor",
"parser"
],
"dependencies": {
"postcss": "^8.4.35",
"postcss-load-config": "^6.0.1"
},
"devDependencies": {
"@biomejs/biome": "1.9.3",
"@vitest/coverage-v8": "^2.0.2",
"autoprefixer": "^10.4.17",
"conventional-changelog-cli": "^5.0.0",
"posthtml": "^0.16.6",
"vitest": "^2.0.2"
}
}