-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 887 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
{
"name": "postcss-shadowdom",
"version": "1.1.0",
"description": "PostCSS plugin to convert :root selectors to :host for Shadow DOM compatibility",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"test": "jest --coverage --reporters=jest-junit",
"prepublishOnly": "npm run build",
"format:fix": "npx prettier . --write",
"format:check": "npx prettier . --check"
},
"keywords": [
"postcss",
"postcss-plugin",
"css",
"shadow-dom",
"web-components",
"root",
"host"
],
"author": "Joseph Adamita",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"postcss": "^8.4.41",
"prettier": "3.3.3",
"ts-jest": "^29.2.4",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
}
}