-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
77 lines (77 loc) · 2.26 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "rollup-plugin-postcss-lit",
"version": "2.1.0",
"description": "Rollup plugin to load PostCSSed stylesheets in LitElement components",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "mocha -r jsdom-global/register test/test.spec.mjs",
"prepublishOnly": "rm -rf dist && npm run build && npm run test",
"lint:check": "eslint '**/*.{ts,mjs}'",
"lint": "npm run lint:check -- --fix",
"format:check": "prettier --ignore-path .gitignore --check '**/*.{ts,mjs}'",
"format": "prettier --ignore-path .gitignore --write '**/*.{ts,mjs}'",
"types:check": "tsc --noEmit",
"check": "npm run test && npm run lint:check && npm run format:check && npm run types:check",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/umbopepato/rollup-plugin-postcss-lit.git"
},
"keywords": [
"postcss",
"css",
"lit",
"lit-element",
"lit-html",
"sass",
"scss",
"less",
"stylus",
"css-modules",
"rollup-plugin",
"vite-plugin"
],
"author": "Umberto Pepato <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/umbopepato/rollup-plugin-postcss-lit/issues"
},
"homepage": "https://github.com/umbopepato/rollup-plugin-postcss-lit#readme",
"devDependencies": {
"@types/estree": "^1.0.1",
"glob": "^10.2.7",
"@types/mocha": "^10.0.1",
"@types/node": "^18.16.1",
"@commitlint/cli": "^17.6.5",
"@commitlint/config-conventional": "^17.6.5",
"@rollup/plugin-virtual": "^3.0.1",
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
"eslint": "^8.43.0",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-unused-imports": "^2.0.0",
"jsdom": "^22.1.0",
"jsdom-global": "^3.0.2",
"lint-staged": "^13.2.2",
"lit": "^2.7.5",
"mocha": "^10.2.0",
"postcss": "^8.4.24",
"prettier": "^2.8.8",
"rollup": "^3.25.1",
"rollup-plugin-postcss": "^4.0.2",
"typescript": "^5.1.3",
"vite": "^4.3.9",
"husky": "^7.0.0"
},
"dependencies": {
"@rollup/pluginutils": "^5.0.2",
"transform-ast": "^2.4.4"
},
"files": [
"dist"
]
}