-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 935 Bytes
/
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
{
"name": "@idrinth/duplicate-style-check",
"version": "1.1.1",
"description": "A linting tool trying to find duplicated style rules",
"type": "module",
"license": "MIT",
"keywords": [
"css",
"lint",
"duplication"
],
"repository": {
"type": "git",
"url": "https://github.com/idrinth/duplicate-style-check"
},
"scripts": {
"tsc": "tsc -p tsconfig.json",
"prepublishOnly": "npm run tsc",
"postpublishOnly": "npm run clear",
"clear": "node tools/clear-js-files-from-src.js"
},
"dependencies": {
"css": "^3.0.0"
},
"devDependencies": {
"@types/css": "^0.0.38",
"@types/node": "^22.0.0",
"typescript": "^5.3.3",
"ts-node": "^10.9.2",
"eslint": "^9.0.0",
"eslint-plugin-json": "^4.0.0",
"@typescript-eslint/parser": "^8.0.0"
},
"bin": {
"lint-css-duplicates": "bin/lint-css-duplicates.js",
"ilcd": "bin/lint-css-duplicates.js"
}
}