forked from xt0rted/dotnet-format
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 998 Bytes
/
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
{
"name": "dotnet-format",
"version": "1.0.0",
"private": true,
"description": "Run `dotnet format` and optionally apply any fixes",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"eslint": "eslint . --ext .js,.ts",
"eslint:fix": "eslint . --fix --ext .js,.ts",
"package": "ncc build src/main.ts",
"release": "yarn package && git add -f dist/",
"test": "tsc --noEmit && yarn eslint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xt0rted/dotnet-format.git"
},
"keywords": [
"actions"
],
"author": "xt0rted",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1.1",
"@actions/github": "^5.1.1",
"@actions/io": "^1.1.2"
},
"devDependencies": {
"@types/node": "^20.4.2",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"@vercel/ncc": "^0.36.1",
"eslint": "^7.32.0",
"typescript": "^5.0.4"
}
}