-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.68 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
{
"name": "snowflake-data-xt",
"version": "1.7.1",
"description": "Nuget package for fluent snowflake access.",
"author": {
"name": "Jonas Schubert",
"url": "https://github.com/JonasSchubert/",
"email": "[email protected]"
},
"contributors": [],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/JonasSchubert/Snowflake.Data.Xt.git"
},
"scripts": {
"build:prod": "dotnet clean && dotnet build -tl && dotnet publish src/Snowflake.Data.Xt.csproj -c Release -f net8.0",
"format": "dotnet format ./Snowflake.Data.Xt.sln",
"pack": "dotnet pack --configuration Release",
"prepare": "is-ci || husky",
"pre-push": "npm run tool:restore && npm run build:prod && npm run test:unit && npm run test:quality",
"test:quality": "dotnet tool run roslynator analyze -o ./roslynator.yml --severity-level hidden",
"test:unit": "dotnet test Snowflake.Data.Xt.sln --collect:\"XPlat Code Coverage\" --logger:\"junit;LogFilePath=../junit/junit-test-result.xml\" && dotnet tool run reportgenerator -reports:\"**/*/coverage.cobertura.xml\" -targetdir:\"coverage\" -reporttypes:\"Cobertura;HtmlInline\"",
"tool:restore": "dotnet tool restore",
"update:npm": "npm update",
"update:nuget": "dotnet tool run dotnet-outdated -u"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"commitlint-presets": "^1.0.5",
"husky": "^9.1.6",
"is-ci": "^3.0.1"
},
"commitlint": {
"extends": [
"./node_modules/commitlint-presets/index.js"
]
},
"release": {
"extends": "semantic-release-presets/presets/github/.releaserc.main-nuget.json"
}
}