-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
42 lines (42 loc) · 1.13 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
{
"name": "stylelint-problem-matcher",
"version": "1.0.0",
"private": true,
"description": "Sets up a problem matcher for stylelint that's used to create annotations for violations",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc --project ./tsconfig.build.json",
"lint": "tsc --noEmit",
"package": "ncc build src/main.ts",
"release": "npm run package && git add -f dist/",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xt0rted/dotnet-format-linter-action.git"
},
"keywords": [
"actions",
"github",
"problem-matcher",
"annotations"
],
"author": "xt0rted",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.1"
},
"devDependencies": {
"@types/jest": "^28.1.7",
"@types/node": "^20.14.11",
"@vercel/ncc": "^0.38.3",
"cross-env": "^7.0.3",
"github-actions-problem-matcher-typings": "^1.1.0",
"jest": "^28.1.3",
"jest-circus": "^29.7.0",
"ts-jest": "^28.0.8",
"tslib": "^2.8.1",
"typescript": "^5.7.3"
}
}