site/node_modules/esbuild-sass-plugin/package.json

63 lines
1.5 KiB
JSON
Raw Normal View History

2024-10-14 06:09:33 +00:00
{
"name": "esbuild-sass-plugin",
"version": "2.16.1",
"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": [
"src",
"lib",
"LICENSE",
"README.MD"
],
"author": "Gianluca Romeo <glromeo@gmail.com> (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": {
"resolve": "^1.22.6",
"sass": "^1.7.3"
},
"devDependencies": {
"@types/node": "^18.15.12",
"@types/resolve": "^1.20.2",
"esbuild": "^0.19.4",
"mocha-toolkit": "^1.0.7",
"postcss": "^8.4.31",
"postcss-modules": "^6.0.0",
"postcss-url": "^10.1.3",
"source-map": "^0.7.4",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"peerDependencies": {
"esbuild": "^0.19.4"
}
}