-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
91 lines (91 loc) · 2.25 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "find-unused-sass-variables",
"version": "6.0.0",
"description": "A small tool to find unused Sass variables",
"author": "XhmikosR <[email protected]>",
"funding": "https://github.com/sponsors/XhmikosR",
"contributors": [
"Johann-S <[email protected]>",
"GeoSot <[email protected]>"
],
"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",
"test": "npm-run-all --aggregate-output --continue-on-error --parallel --parallel test:*",
"test:cli": "node ./bin/cli.js tests/ --ignore=\"$a,$b\" --ignoreFiles=\"**/ignored-file*.scss\"",
"test:integration": "node tests/integration.js",
"test:options": "node tests/options.js",
"test-ci": "npm-run-all --aggregate-output --continue-on-error --parallel test:integration test:options"
},
"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",
"glob": "^7.2.3",
"picocolors": "^1.1.1",
"postcss": "^8.4.49",
"postcss-scss": "^4.0.9",
"strip-bom": "^5.0.0"
},
"devDependencies": {
"npm-run-all2": "^7.0.1",
"xo": "^0.59.3"
},
"files": [
"bin/cli.js",
"lib/parse-variable.js",
"index.js"
],
"engines": {
"node": ">=18"
},
"keywords": [
"sass",
"unused",
"variables",
"scss"
],
"xo": {
"space": true,
"rules": {
"arrow-body-style": "off",
"capitalized-comments": "off",
"comma-dangle": [
"error",
"never"
],
"operator-linebreak": [
"error",
"after"
],
"object-curly-spacing": [
"error",
"always"
],
"space-before-function-paren": [
"error",
"never"
],
"unicorn/prefer-top-level-await": "off",
"unicorn/prevent-abbreviations": "off"
}
}
}