-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.31 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
{
"name": "fs-size-checker",
"description": "A powerful CLI tool for analyzing file and directory sizes. Signals errors via standard exit codes when specified size limits are exceeded, providing precise file system size management and seamless CI/CD integration.",
"version": "1.2.1",
"author": "Yevgen Vasiltsov",
"repository": {
"type": "git",
"url": "https://github.com/e-vasiltsov/fs-size-checker"
},
"keywords": [
"fs-size-checker",
"directory",
"file",
"size",
"limit",
"checker",
"typescript",
"cli",
"file-system",
"storage",
"disk-usage",
"optimization",
"monitoring",
"analysis"
],
"scripts": {
"build": "rimraf dist && tsc",
"test": "jest",
"format": "prettier --write ./src",
"format:check": "prettier --check ./src",
"prepare": "husky"
},
"files": [
"./dist"
],
"main": "./dist/bin/fs-size-checker.js",
"bin": {
"fs-size-checker": "./dist/bin/fs-size-checker.js"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@types/jest": "^29.5.13",
"@types/node": "^22.5.5",
"husky": "^9.1.6",
"jest": "^29.7.0",
"prettier": "3.3.3",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.5",
"typescript": "^5.6.2"
},
"license": "MIT"
}