-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.29 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.29 KB
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
{
"name": "purview-telemetry-sourcegenerator",
"version": "3.2.3",
"description": "Generates [`ActivitySource`](https://learn.microsoft.com/en-us/dotnet/api/system.diagnostics.activitysource), [`ILogger`](https://learn.microsoft.com/en-us/dotnet/api/microsoft.extensions.logging.ilogger), and [`Metrics`](https://learn.microsoft.com/en-us/dotnet/api/system.diagnostics.metrics) based on interface methods.",
"readme": "README.md",
"main": "index.js",
"scripts": {
"release": "commit-and-tag-version --commit-all"
},
"repository": {
"type": "git",
"url": "git+https://github.com/purview-dev/purview-telemetry-sourcegenerator.git"
},
"author": "Kieron Lanning (https://github.com/kieronlanning/)",
"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.8.0",
"@commitlint/config-conventional": "^19.8.0",
"@types/node": "^22.14.1",
"commit-and-tag-version": "^12.5.1",
"commitlint": "^19.8.0",
"husky": "^9.1.7"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"commit-and-tag-version": {
"scripts": {
"postbump": "make update-version && git add ."
}
}
}