generated from xt0rted/problem-matcher
-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
44 lines (44 loc) · 1.18 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
{
"name": "markdownlint-problem-matcher",
"version": "1.0.0",
"private": true,
"description": "Sets up a problem matcher for markdownlint-cli to create annotations for violations",
"main": "dist/index.js",
"type": "module",
"scripts": {
"clean": "rimraf coverage dist lib",
"build": "tsc",
"lint": "tsc --noEmit",
"markdownlint": "markdownlint **/*.md --ignore node_modules",
"package": "ncc build src/main.ts --source-map --license license.txt",
"release": "npm run package && git add -f dist/",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xt0rted/markdownlint-problem-matcher.git"
},
"keywords": [
"actions",
"github",
"problem-matcher",
"annotations"
],
"author": "xt0rted",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.11.1"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.10.7",
"@vercel/ncc": "^0.38.3",
"github-actions-problem-matcher-typings": "^1.1.0",
"jest": "^29.7.0",
"jest-circus": "^29.7.0",
"markdownlint-cli": "^0.43.0",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.5",
"typescript": "^5.7.3"
}
}