-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 962 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
{
"name": "dotnet-enumerable",
"version": "0.0.0",
"description": "Libraries with enumerable extensions",
"scripts": {
"build": "dotnet build",
"start": "dotnet start",
"prepare": "husky",
"lint:stage:fix": "lint-staged --relative",
"lint:fix": "dotnet format",
"lint": "dotnet format --verify-no-changes",
"restore": "dotnet restore",
"test": "dotnet test",
"test:coverage": "dotnet test /p:CollectCoverage=true /p:CoverletOutputFormat=lcov /p:CoverletOutput=./coverage/lcov.info",
"benchmark": "dotnet run --project test/Codibre.EnumerableExtensions.Branching.Benchmark/Codibre.EnumerableExtensions.Branching.Benchmark.csproj -c Release"
},
"devDependencies": {
"@types/lint-staged": "^13.3.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.10",
"run-container": "^2.0.12"
},
"lint-staged": {
"*.cs": "dotnet format --include"
},
"keywords": [],
"author": "",
"license": "ISC"
}