-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.78 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.78 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "@techfever/labinsight",
"description": "A smart code analysis tool for all your project needs",
"version": "0.1.8",
"main": "dist/bin/labinsight.js",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/techfever-soft/labinsight"
},
"bin": {
"labinsight": "dist/bin/labinsight.js"
},
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc && tsc-alias && npm run copy-python && npm run copy-templates && node dist/bin/labinsight.js",
"copy-python": "gulp copy-python",
"copy-templates": "gulp copy-templates",
"test": "jest --coverage"
},
"_moduleAliases": {
"@core": "./dist/core",
"@interfaces": "./dist/interfaces",
"@utils": "./dist/utils",
"@config": "./dist/config",
"@lab-types": "./dist/types",
"@loaders": "./dist/loaders"
},
"keywords": [
"cli",
"analysis",
"linting",
"labinsight",
"code analysis",
"code review",
"code quality",
"tool",
"report",
"codebase",
"automation"
],
"author": "TechFever",
"license": "MIT",
"homepage": "https://lab-insight.web.app",
"dependencies": {
"@inquirer/prompts": "^5.5.0",
"@types/chalk": "^0.4.12",
"@types/commander": "^2.12.0",
"@types/node": "^22.5.4",
"@types/uuid": "^10.0.0",
"acorn-walk": "^8.3.4",
"chalk": "^4.1.2",
"handlebars": "^4.7.8",
"module-alias": "^2.2.3",
"npm-registry-fetch": "^17.1.0",
"ora": "^5.4.1",
"uuid": "^10.0.0",
"typescript": "^5.6.2",
"@types/jest": "^29.5.13",
"@types/module-alias": "^2.0.4",
"@types/npm-registry-fetch": "^8.0.7",
"gulp": "^4.0.0",
"gulp-typescript": "^6.0.0-alpha.1",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"tsc-alias": "^1.8.10"
},
"devDependencies": {}
}