-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 900 Bytes
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 900 Bytes
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
{
"name": "lines-of-code-checker",
"version": "1.2.2",
"description": "Command-line tool to check files that exceed the specified number of lines of code",
"keywords": [
"locc",
"lines of code checker",
"lines of code check",
"check lines of code",
"loc",
"lines of code",
"count lines of code",
"代码行数检查器",
"代码行数检查",
"检查代码行数",
"代码行数"
],
"license": "MIT",
"author": "Lsnsh Xin <lsnzshe@gmail.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/Lsnsh/lines-of-code-checker.git"
},
"bin": {
"locc": "dist/cli.js"
},
"scripts": {
"build": "vite build",
"prepublishOnly": "npm run build",
"test": "jest"
},
"files": [],
"dependencies": {
"commander": "^12.1.0"
},
"devDependencies": {
"jest": "^29.7.0",
"vite": "^5.4.10"
}
}