forked from lix-project/lix-website
72 lines
1.6 KiB
JSON
72 lines
1.6 KiB
JSON
|
{
|
||
|
"name": "find-unused-sass-variables",
|
||
|
"version": "3.1.0",
|
||
|
"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>"
|
||
|
],
|
||
|
"license": "MIT",
|
||
|
"main": "index.js",
|
||
|
"bin": {
|
||
|
"find-unused-sass-variables": "./cli.js",
|
||
|
"fusv": "./cli.js"
|
||
|
},
|
||
|
"scripts": {
|
||
|
"lint": "npm run xo",
|
||
|
"test": "npm run xo && npm run test:integration",
|
||
|
"test:integration": "node tests/integration.js",
|
||
|
"xo": "xo"
|
||
|
},
|
||
|
"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": {
|
||
|
"chalk": "^4.1.0",
|
||
|
"commander": "^5.1.0",
|
||
|
"escape-string-regexp": "^4.0.0",
|
||
|
"glob": "^7.1.6",
|
||
|
"postcss": "^8.2.2",
|
||
|
"postcss-scss": "^3.0.4"
|
||
|
},
|
||
|
"devDependencies": {
|
||
|
"xo": "^0.37.1"
|
||
|
},
|
||
|
"files": [
|
||
|
"cli.js",
|
||
|
"index.js",
|
||
|
"lib/parse-variable.js"
|
||
|
],
|
||
|
"engines": {
|
||
|
"node": ">=10"
|
||
|
},
|
||
|
"keywords": [
|
||
|
"sass",
|
||
|
"unused",
|
||
|
"variables",
|
||
|
"scss"
|
||
|
],
|
||
|
"xo": {
|
||
|
"space": 4,
|
||
|
"rules": {
|
||
|
"capitalized-comments": "off",
|
||
|
"object-curly-spacing": [
|
||
|
"error",
|
||
|
"always"
|
||
|
],
|
||
|
"space-before-function-paren": [
|
||
|
"error",
|
||
|
"never"
|
||
|
],
|
||
|
"unicorn/no-array-reduce": "off",
|
||
|
"unicorn/prevent-abbreviations": "off"
|
||
|
}
|
||
|
}
|
||
|
}
|