find-unused-sass-variables
Version:
A small tool to find unused Sass variables
65 lines (64 loc) • 1.48 kB
JSON
{
"name": "find-unused-sass-variables",
"version": "6.2.1",
"description": "A small tool to find unused Sass variables",
"author": "XhmikosR <xhmikosr@gmail.com>",
"funding": "https://github.com/sponsors/XhmikosR",
"contributors": [
"Johann-S <johann.servoire@gmail.com>",
"GeoSot <geo.sotis@gmail.com>"
],
"license": "MIT",
"main": "index.js",
"type": "module",
"exports": {
".": "./index.js"
},
"bin": {
"find-unused-sass-variables": "./bin/cli.js",
"fusv": "./bin/cli.js"
},
"scripts": {
"xo": "xo",
"lint": "xo",
"fix": "xo --fix",
"uvu": "uvu tests",
"test": "npm run lint && npm run uvu",
"test:ci": "c8 npm run uvu"
},
"repository": {
"type": "git",
"url": "git+https://github.com/XhmikosR/find-unused-sass-variables.git"
},
"bugs": {
"url": "https://github.com/XhmikosR/find-unused-sass-variables/issues"
},
"homepage": "https://github.com/XhmikosR/find-unused-sass-variables#readme",
"dependencies": {
"commander": "^12.1.0",
"escape-string-regexp": "^5.0.0",
"picocolors": "^1.1.1",
"postcss": "^8.5.13",
"postcss-scss": "^4.0.9",
"tinyglobby": "^0.2.16"
},
"devDependencies": {
"c8": "^10.1.3",
"uvu": "^0.5.6",
"xo": "^1.2.3"
},
"files": [
"bin/cli.js",
"lib/parse-variable.js",
"index.js"
],
"engines": {
"node": ">=18"
},
"keywords": [
"sass",
"unused",
"variables",
"scss"
]
}