-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
148 lines (148 loc) · 4.1 KB
/
package.json
File metadata and controls
148 lines (148 loc) · 4.1 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
{
"name": "template-sync-hook",
"version": "0.0.0-semantic-release",
"publishConfig": {
"access": "public"
},
"packageManager": "npm@11.6.4+sha512.1118cab46a05a50aee6bff5b1b4fa1df18afff89d57465620a3518035026955db87c5bdf9d207b07b7487d99f2490d450cb774655ad63ec2cba7bf1d0ad25d45",
"description": "hook for npm-template-sync",
"keywords": [
"github",
"kronos-integration",
"npm",
"systemd",
"template",
"webhook"
],
"contributors": [
{
"name": "Markus Felten",
"email": "markus.felten@gmx.de"
}
],
"license": "0BSD",
"bin": {
"template-sync-hook": "src/template-sync-hook-cli.mjs"
},
"scripts": {
"start": "node src/template-sync-hook-cli.mjs",
"test": "node --run test:ava",
"test:ava": "ava --timeout 4m tests/*-ava.mjs tests/*-ava-node.mjs",
"cover": "c8 -x 'tests/**/*' --temp-directory build/tmp ava --timeout 2m tests/*-ava.mjs tests/*-ava-node.mjs && c8 report -r lcov -o build/coverage --temp-directory build/tmp",
"docs": "documentation readme ./src/template-sync-hook-cli.mjs --section=API",
"lint": "node --run lint:docs",
"lint:docs": "documentation lint ./src/template-sync-hook-cli.mjs"
},
"dependencies": {
"@kronos-integration/interceptor-webhook": "^4.0.39",
"@kronos-integration/service": "^15.5.4",
"@kronos-integration/service-http": "^14.0.33",
"@kronos-integration/service-repositories": "^4.0.61",
"@template-tools/template-sync": "^14.3.52",
"github-repository-provider": "^10.0.30"
},
"devDependencies": {
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/exec": "^7.1.0",
"@semantic-release/github": "^12.0.6",
"@semantic-release/release-notes-generator": "^14.1.0",
"ava": "^7.0.0",
"c8": "^11.0.0",
"documentation": "^14.0.0",
"got": "^15.0.1",
"mf-hosting": "^3.0.8",
"npm-pkgbuild": "^20.6.4",
"semantic-release": "^25.0.3"
},
"optionalDependencies": {
"@kronos-integration/service-systemd": "^5.1.1"
},
"engines": {
"node": ">=24.13.0"
},
"os": [
"linux",
"darwin"
],
"cpu": [
"arm",
"arm64"
],
"repository": {
"type": "git",
"url": "git+https://github.com/template-tools/template-sync-hook.git"
},
"bugs": {
"url": "https://github.com/template-tools/template-sync-hook/issues"
},
"homepage": "https://github.com/template-tools/template-sync-hook#readme",
"pkgbuild": {
"content": {
"${systemd_unit_dir}${name}.service": "pkg/${name}.service",
"${config_dir}config.json": "pkg/config.json",
"${install_dir}": {
"type": "npm-pack"
},
"${install_dir}/node_modules": {
"type": "node-modules"
}
},
"kronos": true,
"nginx_location_trailer": " access_log off; ",
"nginx_location_category": "development"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
[
"@semantic-release/exec",
{
"publishCmd": "npx npm-pkgbuild --publish dist"
}
],
[
"@semantic-release/github",
{
"assets": [
{
"path": "dist/*.deb",
"label": "any Debian Package"
},
{
"path": "dist/*any.pkg.*",
"label": "any Arch Linux Package"
},
{
"path": "dist/*x86_64.pkg.*",
"label": "x86_64 Arch Linux Package"
},
{
"path": "dist/*aarch64.pkg.*",
"label": "arm64 Arch Linux Package"
},
{
"path": "dist/*noarch.rpm",
"label": "noarch RPM"
},
{
"path": "dist/*x86_64.rpm",
"label": "x86_64 RPM"
},
{
"path": "dist/*aarch64.rpm",
"label": "arm64 RPM"
}
]
}
]
]
},
"template": {
"inheritFrom": [
"arlac77/template-arlac77-github",
"arlac77/template-kronos-app"
]
}
}