-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
68 lines (68 loc) · 1.66 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
{
"name": "dotnet-bump",
"version": "2.0.0",
"description": "CLI to increment and git-tag the version of .NET, C(++) and npm projects",
"bin": "cli.js",
"license": "MIT",
"author": "Vincent Weevers",
"scripts": {
"test": "standard && hallmark",
"pack": "npm-run-all pack:*",
"pack:pre": "mkdirp dist && rimraf dist/*",
"pack:win": "pkg -t node12-win-x64 -o dist/windows-x64/dotnet-bump.exe .",
"pack:linux": "pkg -t node12-linux-x64 -o dist/linux-x64/dotnet-bump .",
"pack:macos": "pkg -t node12-macos-x64 -o dist/macos-x64/dotnet-bump .",
"fix:js": "standard --fix",
"fix:md": "hallmark --fix"
},
"files": [
"lib",
"cli.js",
"index.js",
"usage.txt"
],
"dependencies": {
"after": "0.8.2",
"assembly-source": "^1.0.0",
"common-roots": "0.0.2",
"glob": "^8.0.3",
"is-glob": "^4.0.1",
"json5": "^2.1.3",
"language-detect": "^1.1.0",
"minimist": "^1.2.0",
"once": "^1.4.0",
"parse-git-status": "^0.1.0",
"readable-stream": "^4.1.0",
"run-series": "^1.1.4",
"saxophonist": "^2.0.0",
"semver": "^7.3.2",
"vssln-parser": "0.1.4"
},
"devDependencies": {
"hallmark": "^4.1.0",
"mkdirp": "^1.0.4",
"npm-run-all": "^4.1.5",
"pkg": "^5.2.1",
"rimraf": "^3.0.2",
"standard": "^17.0.0"
},
"repository": "vweevers/dotnet-bump",
"bugs": "https://github.com/vweevers/dotnet-bump/issues",
"homepage": "https://github.com/vweevers/dotnet-bump",
"keywords": [
"assembly",
"csharp",
"csproj",
"cs",
"dotnet",
"semver",
"sln",
"version",
"visual-studio",
"vs",
"vssln"
],
"engines": {
"node": ">=12"
}
}