-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 921 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 921 Bytes
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
{
"name": "dotnet-format-plus",
"version": "0.0.0",
"private": true,
"description": "Composite GitHub Action: dotnet format + jscpd",
"type": "module",
"scripts": {
"format": "biome format --write .",
"format-check": "biome check .",
"lint": "biome lint .",
"test": "node --test \"__tests__/**/*.test.mjs\"",
"test:w": "node --test --watch \"__tests__/**/*.test.mjs\"",
"all": "biome check . && node --test \"__tests__/**/*.test.mjs\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/maxisam/dotnet-format-plus.git"
},
"keywords": [
"actions",
"github actions",
"dotnet format",
"jscpd"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "^2.5.1",
"js-yaml": "^4.1.0"
},
"packageManager": "pnpm@11.9.0"
}