-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
73 lines (73 loc) · 1.95 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
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
70
71
72
73
{
"name": "nuget-deps-tree",
"version": "0.4.0",
"description": "NuGet dependency tree generator",
"license": "Apache-2.0",
"homepage": "https://github.com/jfrog/nuget-deps-tree",
"repository": {
"type": "git",
"url": "https://github.com/jfrog/nuget-deps-tree"
},
"bugs": {
"url": "https://github.com/jfrog/nuget-deps-tree/issues"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\" \"model/**/*.ts\" \".eslintrc.js\" \"bin/**/*.ts\"",
"build": "npm run compile",
"lint": "eslint -c .eslintrc.js --ext .ts src",
"prepare": "npm run build",
"preversion": "npm run lint",
"watch": "tsc -watch -p ./",
"compile": "tsc -p ./",
"pretest": "npm run compile",
"test": "jest --verbose"
},
"bin": {
"nuget-deps-tree": "dist/bin/command.js"
},
"engines": {
"node": ">=18",
"npm": ">=10"
},
"files": [
"dist/**/*"
],
"dependencies": {
"commander": "^12.0.0",
"fast-xml-parser": "^4.3.2",
"fs-extra": "^9.0.1",
"lodash": "^4.17.21",
"loglevel": "^1.7.1",
"walkdir": "^0.4.1",
"which": "^2.0.2"
},
"devDependencies": {
"@types/fs-extra": "^8.1.0",
"@types/jest": "^29.2.4",
"@types/lodash": "^4.14.162",
"@types/which": "^1.3.2",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.5.0",
"jest": "^29.3.1",
"prettier": "^2.0.5",
"ts-jest": "^29.0.3",
"typescript": "~5.3.3"
},
"keywords": [
"nuget",
"dotnet",
"dependency",
"tree",
"dependencies",
"javascript",
"typescript",
"nodejs",
"devops",
"jfrog",
"js",
"ts"
]
}