-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
32 lines (32 loc) · 1.24 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
{
"name": "purview-telemetry-sourcegenerator",
"version": "2.0.1",
"description": "Generates [ActivitySource](https://learn.microsoft.com/en-us/dotnet/api/system.diagnostics.activitysource), [High-performance logging](https://learn.microsoft.com/en-us/dotnet/core/extensions/high-performance-logging) and [Metrics](https://learn.microsoft.com/en-us/dotnet/api/system.diagnostics.metrics) based on methods on an interface, enabling fast iteration cycles, dependency injection and substitutes for testing.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"release": "commit-and-tag-version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/purview-dev/purview-telemetry-sourcegenerator.git"
},
"author": "Kieron Lanning",
"license": "ISC",
"bugs": {
"url": "https://github.com/purview-dev/purview-telemetry-sourcegenerator/issues"
},
"homepage": "https://github.com/purview-dev/purview-telemetry-sourcegenerator#readme",
"devDependencies": {
"@commitlint/cli": "^19.7.1",
"@commitlint/config-conventional": "^19.7.1",
"commit-and-tag-version": "^12.5.0",
"commitlint": "^19.7.1",
"husky": "^9.1.7"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}