forked from glromeo/esbuild-sass-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·59 lines (59 loc) · 1.48 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
{
"name": "esbuild-sass-plugin",
"version": "2.4.3",
"description": "esbuild plugin for sass/scss files supporting both css loader and css result import (lit-element)",
"main": "lib/index.js",
"keywords": [
"esbuild",
"plugin",
"sass",
"scss",
"css",
"postcss",
"css-modules"
],
"files": [
"lib",
"LICENSE",
"README.MD"
],
"author": "Gianluca Romeo <[email protected]> (https://github.com/glromeo/esbuild-sass-plugin)",
"license": "MIT",
"bugs": {
"url": "https://github.com/glromeo/esbuild-sass-plugin/issues"
},
"homepage": "https://github.com/glromeo/esbuild-sass-plugin#readme",
"repository": {
"type": "git",
"url": "https://github.com/glromeo/esbuild-sass-plugin.git"
},
"scripts": {
"setup": "cd test/fixture && yarn install && cd ../issues && yarn install && cd ../..",
"build": "tsc",
"build:watch": "tsc --watch",
"test": "c8 mocha test/**/*.test.ts",
"coverage": "c8 report --reporter=text-lcov | coveralls"
},
"mocha": {
"require": [
"ts-node/register"
]
},
"dependencies": {
"esbuild": "^0.15.17",
"resolve": "^1.22.1",
"sass": "^1.56.1"
},
"devDependencies": {
"@types/node": "^18.11.10",
"@types/resolve": "^1.20.2",
"@types/sass": "^1.43.1",
"mocha-toolkit": "^1.0.7",
"postcss": "^8.4.19",
"postcss-modules": "^6.0.0",
"postcss-url": "^10.1.3",
"source-map": "^0.7.4",
"ts-node": "^10.9.1",
"typescript": "^4.9.3"
}
}