-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.18 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
{
"name": "@aakashvaa/css-cleaner",
"version": "1.0.3",
"description": "A CLI tool to remove duplicate CSS/SCSS properties, keeping the last occurrence.",
"type": "module",
"main": "index.js",
"bin": {
"css-cleaner": "index.js"
},
"scripts": {
"start": "node index.js src -r",
"start:fix": "node index.js src -r --fix",
"test": "npm run test:log && npm run test:fix",
"test:log": "node index.js test -r",
"test:fix": "node index.js test -r --fix",
"dev": "node index.js test -r",
"build": "npm pack",
"release": "npm version patch && npm publish --access public"
},
"keywords": [
"css",
"scss",
"cleaner",
"linter",
"duplicate",
"properties"
],
"author": "aakashvaa",
"license": "MIT",
"dependencies": {
"chalk": "^5.3.0",
"commander": "^12.1.0",
"glob": "^11.0.0",
"postcss": "^8.4.49",
"postcss-scss": "^4.0.9"
},
"repository": {
"type": "git",
"url": "git+https://github.com/akaashvaa/css-dublicates-cleaner.git"
},
"bugs": {
"url": "https://github.com/akaashvaa/css-dublicates-cleaner/issues"
},
"homepage": "https://github.com/akaashvaa/css-dublicates-cleaner#readme"
}