-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
52 lines (52 loc) · 1.32 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": "lit-scss-loader",
"author": "Andreas Hahn",
"license": "MIT",
"version": "2.0.1",
"description": "Automatically generate the style-wrapper that is required for LitElement, simply by importing the CSS/SCSS file",
"homepage": "https://github.com/drdreo/lit-scss-loader",
"repository": "https://github.com/drdreo/lit-scss-loader",
"bugs": {
"url": "https://github.com/drdreo/lit-scss-loader/issues"
},
"main": "dist/lit-scss-loader.js",
"scripts": {
"test": "jest",
"build": "webpack",
"preversion": "npm run test",
"prepublish": "npm run test && npm run build"
},
"keywords": [
"lit",
"lit-element",
"webcomponents",
"scss",
"webpack",
"loader",
"automatic"
],
"devDependencies": {
"@types/jest": "^29.2.0",
"@types/node": "16.11.7",
"eslint": "4.19.1",
"eslint-config-airbnb": "17.0.0",
"eslint-plugin-import": "2.12.0",
"eslint-plugin-jsx-a11y": "6.0.3",
"eslint-plugin-react": "7.9.1",
"lit": "2.4.0",
"loader-utils": "^1.1.0",
"memory-fs": "^0.5.0",
"schema-utils": "^0.4.5",
"ts-jest": "^29.0.3",
"ts-node": "^8.10.2",
"typescript": "4.8.4",
"webpack": "5.37.1",
"webpack-cli": "^4.7.0"
},
"dependencies": {
"clean-css": "^4.2.1"
},
"peerDependencies": {
"webpack": "^5.37.1"
}
}