forked from SiqiLu/dotnet-bump-version
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.09 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
{
"name": "dotnet-bump-version",
"version": "2.1.0",
"description": "A GitHub Action to easily bump .NET Core project version files(.csproj).",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write src/**/*.ts",
"format-check": "prettier --check src/**/*.ts",
"lint": "eslint src/**/*.ts --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SiqiLu/dotnet-bump-version.git"
},
"keywords": [
"github",
"actions",
"dotnet",
"bump",
"version"
],
"author": "Siqi Lu",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.9.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^5.0.3",
"@types/node": "^18.6.5",
"globby": "^13.1.2"
},
"devDependencies": {
"@typescript-eslint/parser": "^5.33.0",
"eslint": "^8.21.0",
"eslint-plugin-github": "^4.3.7",
"eslint-plugin-import": "^2.26.0",
"prettier": "^2.7.1",
"typescript": "^4.7.4"
}
}