-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 937 Bytes
/
package.json
File metadata and controls
47 lines (47 loc) · 937 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
41
42
43
44
45
46
47
{
"name": "codemeter",
"scripts": {
"test": "jest"
},
"devDependencies": {
"jest": "^29.7.0"
},
"jest": {
"testEnvironment": "node",
"testTimeout": 10000
},
"homepage": "https://github.com/kritebh/codemeter",
"author": {
"name": "Kritebh Lagan Bibhakar",
"url": "https://github.com/kritebh"
},
"version": "0.0.3",
"bin": {
"codemeter": "./bin/index.js"
},
"engines": {
"node": ">=16"
},
"repository": {
"type": "git",
"url": "https://github.com/kritebh/codemeter.git"
},
"description": "A CLI tool for code analysis. Counts lines and files",
"keywords": [
"cli",
"count line",
"count lines of code",
"lines of code",
"loc",
"cli tool",
"terminal"
],
"license": "MIT",
"dependencies": {
"chalk": "^4.1.2",
"cli-progress": "^3.12.0",
"cli-table3": "^0.6.3",
"commander": "^11.1.0",
"ignore": "^5.2.4"
}
}