-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 986 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 986 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
{
"name": "dependsight",
"version": "0.1.0",
"description": "Intelligent dependency management tool for developers",
"main": "dist/index.js",
"bin": {
"dependsight": "./bin/dependsight.js"
},
"scripts": {
"build": "tsc",
"dev": "ts-node src/index.ts",
"start": "node dist/index.js",
"test": "jest"
},
"keywords": [
"dependencies",
"analysis",
"update",
"management"
],
"author": "",
"license": "MIT",
"dependencies": {
"axios": "^1.6.0",
"chalk": "^4.1.2",
"commander": "^11.0.0",
"glob": "^10.3.4",
"ora": "^5.4.1",
"semver": "^7.5.4",
"@babel/parser": "^7.23.0",
"@babel/traverse": "^7.23.0",
"@babel/types": "^7.23.0"
},
"devDependencies": {
"@types/babel__traverse": "^7.20.2",
"@types/glob": "^8.1.0",
"@types/node": "^20.8.0",
"@types/semver": "^7.5.3",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}