entitlement-provider 2.9.104 → 2.9.111
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +18 -19
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "entitlement-provider",
|
|
3
|
-
"version": "2.9.
|
|
3
|
+
"version": "2.9.111",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -23,8 +23,7 @@
|
|
|
23
23
|
"scripts": {
|
|
24
24
|
"test": "npm run test:ava",
|
|
25
25
|
"test:ava": "ava --timeout 2m tests/*.mjs",
|
|
26
|
-
"cover": "c8 -x 'tests/**/*' --temp-directory build/tmp ava --timeout 2m && c8 report -r lcov -o build/coverage --temp-directory build/tmp"
|
|
27
|
-
"pkg": "npm-pkgbuild --verbose"
|
|
26
|
+
"cover": "c8 -x 'tests/**/*' --temp-directory build/tmp ava --timeout 2m && c8 report -r lcov -o build/coverage --temp-directory build/tmp"
|
|
28
27
|
},
|
|
29
28
|
"dependencies": {
|
|
30
29
|
"@kronos-integration/interceptor-decode-json": "^2.1.63",
|
|
@@ -41,10 +40,10 @@
|
|
|
41
40
|
"@semantic-release/commit-analyzer": "^9.0.2",
|
|
42
41
|
"@semantic-release/exec": "^6.0.3",
|
|
43
42
|
"@semantic-release/release-notes-generator": "^10.0.3",
|
|
44
|
-
"ava": "^4.
|
|
43
|
+
"ava": "^4.2.0",
|
|
45
44
|
"c8": "^7.1.0",
|
|
46
45
|
"got": "12.0.3",
|
|
47
|
-
"npm-pkgbuild": "^8.3.
|
|
46
|
+
"npm-pkgbuild": "^8.3.16",
|
|
48
47
|
"semantic-release": "^19.0.2"
|
|
49
48
|
},
|
|
50
49
|
"optionalDependencies": {
|
|
@@ -70,16 +69,8 @@
|
|
|
70
69
|
"url": "https://github.com/arlac77/entitlement-provider/issues"
|
|
71
70
|
},
|
|
72
71
|
"homepage": "https://github.com/arlac77/entitlement-provider#readme",
|
|
73
|
-
"config": {
|
|
74
|
-
"base": "/services/entitlements/api",
|
|
75
|
-
"socket": "/run/${name}/http/socket"
|
|
76
|
-
},
|
|
77
72
|
"pkg": {
|
|
78
73
|
"content": {
|
|
79
|
-
"${config.dir}config.json": "config/config.json",
|
|
80
|
-
"${nginx.sites.dir}${name}.conf": "pkg/nginx.conf",
|
|
81
|
-
"${well-known.content.dir}openid-configuration": "config/openid-configuration",
|
|
82
|
-
"${sysusers.config.dir}${name}.conf": "pkg/sysusers.conf",
|
|
83
74
|
"${install.dir}": [
|
|
84
75
|
{
|
|
85
76
|
"type": "npm-pack"
|
|
@@ -88,27 +79,35 @@
|
|
|
88
79
|
"type": "node-modules"
|
|
89
80
|
}
|
|
90
81
|
],
|
|
91
|
-
"${systemd.unit.dir}": {
|
|
92
|
-
|
|
93
|
-
},
|
|
82
|
+
"${systemd.unit.dir}${name}.service": "pkg/${name}.service",
|
|
83
|
+
"${systemd.unit.dir}${name}.socket": "pkg/${name}.socket",
|
|
84
|
+
"${config.dir}config.json": "config/config.json",
|
|
85
|
+
"${nginx.sites.dir}${name}.conf": "pkg/nginx.conf",
|
|
86
|
+
"${well-known.content.dir}openid-configuration": "config/openid-configuration",
|
|
87
|
+
"${sysusers.config.dir}${name}.conf": "pkg/sysusers.conf",
|
|
94
88
|
"${tmpfiles.config.dir}${name}.conf": "pkg/tmpfiles.conf"
|
|
95
89
|
},
|
|
96
90
|
"hooks": "pkg/hooks.sh",
|
|
97
91
|
"backup": "${config.dir}config.json",
|
|
98
|
-
"groups": "user admin"
|
|
92
|
+
"groups": "user admin",
|
|
93
|
+
"depends": {
|
|
94
|
+
"nginx-mainline": ">=1.21.4",
|
|
95
|
+
"systemd": ">=250.4"
|
|
96
|
+
},
|
|
97
|
+
"http.base.path": "/services/entitlements/api"
|
|
99
98
|
},
|
|
100
99
|
"release": {
|
|
101
100
|
"plugins": [
|
|
102
101
|
"@semantic-release/commit-analyzer",
|
|
103
102
|
"@semantic-release/release-notes-generator",
|
|
104
|
-
"@semantic-release/
|
|
103
|
+
"@semantic-release/npm",
|
|
105
104
|
[
|
|
106
105
|
"@semantic-release/exec",
|
|
107
106
|
{
|
|
108
107
|
"publishCmd": "npx npm-pkgbuild"
|
|
109
108
|
}
|
|
110
109
|
],
|
|
111
|
-
"@semantic-release/
|
|
110
|
+
"@semantic-release/github"
|
|
112
111
|
]
|
|
113
112
|
},
|
|
114
113
|
"template": {
|