-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.07 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
{
"name": "codebase-stats-cli",
"version": "1.0.0",
"main": "index.js",
"type": "module",
"scripts": {
"build": "tsc",
"test": "jest",
"test:coverage": "jest --coverage",
"check-format": "prettier --check .",
"fix-format": "prettier --write .",
"lint": "eslint .",
"fix-lint": "eslint . --fix",
"fix": "npm run fix-format && npm run fix-lint",
"cli": "NODE_OPTIONS=\"--loader ts-node/esm\" node src/main.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"cleye": "^1.3.2",
"codebase-stats-collector": "https://github.com/anton-107/codebase-stats-collector.git"
},
"devDependencies": {
"@eslint-community/eslint-plugin-eslint-comments": "^4.4.1",
"@eslint/js": "^9.17.0",
"@types/jest": "^29.5.14",
"eslint": "^9.17.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^15.14.0",
"jest": "^29.7.0",
"prettier": "^3.4.2",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.19.1"
}
}