-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.22 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
{
"name": "htmllint-problem-matcher",
"version": "1.0.0",
"private": true,
"description": "Sets up a problem matcher for htmllint that's used to create annotations for violations",
"keywords": [
"actions",
"github",
"problem-matcher",
"htmllint",
"annotations"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Cherry/htmllint-problem-matcher.git"
},
"license": "MIT",
"author": "Cherry",
"main": "dist/index.js",
"scripts": {
"check-types": "tsc --noEmit",
"lint": "eslint .",
"build": "rollup -c --bundleConfigAsCjs",
"release": "npm run build && git add -f dist/",
"test": "vitest run",
"test:dev": "vitest"
},
"dependencies": {
"@actions/core": "^1.11.0"
},
"devDependencies": {
"@nodecraft/eslint-config": "^43.1.0",
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-typescript": "^12.1.0",
"@types/node": "^22.7.4",
"@typescript-eslint/eslint-plugin": "^8.8.0",
"eslint": "^8.57.1",
"eslint-plugin-json": "^4.0.1",
"eslint-plugin-unicorn": "^55.0.0",
"rollup": "^4.24.0",
"tslib": "^2.7.0",
"typescript": "^5.6.2",
"vitest": "^2.1.2"
},
"engines": {
"node": ">=18"
}
}