forked from xt0rted/dotnet-format-problem-matcher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 988 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
39
{
"name": "dotnet-format-problem-matcher",
"version": "1.0.0",
"private": true,
"description": "Sets up a problem matcher for dotnet-format to create annotations for violations.",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"lint": "tsc --noEmit",
"package": "ncc build src/main.ts",
"release": "npm run package && git add -f dist/",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xt0rted/dotnet-format-problem-matcher.git"
},
"keywords": [
"actions",
"github",
"problem-matcher",
"annotations"
],
"author": "xt0rted",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.4.0"
},
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/node": "^16.11.1",
"@vercel/ncc": "^0.28.5",
"github-actions-problem-matcher-typings": "^1.1.0",
"jest": "^25.5.4",
"jest-circus": "^26.6.3",
"ts-jest": "^25.5.1",
"typescript": "^3.9.10"
}
}