-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.53 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.53 KB
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
{
"author": "Jens Oliver Meiert",
"bin": {
"css-dedup": "bin/css-dedup.js"
},
"dependencies": {
"postcss": "^8.5.24"
},
"description": "CSS declaration deduplicator for maintainability and performance optimization",
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.8.0",
"globals": "^17.8.0",
"typescript": "^7.0.2"
},
"engines": {
"node": ">=20.12.0"
},
"exports": {
".": {
"types": "./src/index.d.ts",
"default": "./src/index.js"
},
"./plugin": {
"types": "./src/plugin.d.ts",
"default": "./src/plugin.js"
}
},
"files": [
"bin",
"!bin/css-dedup.test.js",
"src",
"!src/index.test.ts",
"!src/plugin.test.js"
],
"funding": "https://github.com/j9t/css-dedup?sponsor=1",
"homepage": "https://github.com/j9t/css-dedup",
"keywords": [
"css",
"deduplication",
"dry",
"maintainability",
"optimization",
"performance",
"quality",
"refactoring",
"udjo"
],
"license": "MIT",
"name": "css-dedup",
"repository": {
"type": "git",
"url": "git+https://github.com/j9t/css-dedup.git"
},
"scripts": {
"benchmark": "node test/benchmark.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepare": "git config core.hooksPath .githooks || true",
"start": "node ./bin/css-dedup.js",
"test": "npm run test:types && node --test bin/css-dedup.test.js src/plugin.test.js",
"test:types": "tsc"
},
"type": "module",
"types": "src/index.d.ts",
"version": "1.10.0"
}