-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
93 lines (93 loc) · 2.32 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
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
{
"name": "@hexonet/semantic-release-whmcs",
"description": "`semantic-release` plugin for auto-publishing on WHMCS marketplace",
"version": "5.0.46",
"private": false,
"type": "module",
"publishConfig": {
"access": "public"
},
"author": {
"name": "Kai Schwarz",
"email": "[email protected]"
},
"license": "MIT",
"engines": {
"node": ">=20.6.1"
},
"homepage": "https://github.com/centralnicgroup-opensource/rtldev-middleware-semantic-release-whmcs#readme",
"repository": "github:centralnicgroup-opensource/rtldev-middleware-semantic-release-whmcs",
"bugs": "https://github.com/centralnicgroup-opensource/rtldev-middleware-semantic-release-whmcs/issues",
"maintainers": [
{
"name": "Kai Schwarz",
"email": "[email protected]"
}
],
"keywords": [
"whmcs",
"marketplace",
"hexonet",
"publish",
"release",
"semantic-release",
"version"
],
"ava": {
"files": [
"test/**/*.test.js"
],
"nodeArguments": [
"--no-warnings"
],
"timeout": "2m"
},
"prettier": {
"printWidth": 120,
"trailingComma": "es5"
},
"c8": {
"include": [
"lib/**/*.js",
"index.js",
"cli.js"
],
"reporter": [
"json",
"text",
"html"
],
"all": true
},
"main": "index.js",
"scripts": {
"test": "c8 ava --verbose",
"lint": "prettier --check \"*.{js,json}\" \".github/**/*.{md,yml}\" \"{lib,test}/*.js\"",
"lint:fix": "prettier --write \"*.{js,json}\" \".github/**/*.{md,yml}\" \"{lib,test}/*.js\""
},
"overrides": {
"http-cache-semantics": "^4.1.1",
"word-wrap": "npm:@aashutoshrathi/[email protected]",
"axios": "^1.6.0",
"glob-parent": "^5.1.2"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"ava": "6.2.0",
"c8": "^10.0.0",
"prettier": "^3.0.0",
"semantic-release": "^24.0.0",
"semantic-release-teams-notify-plugin": "github:centralnicgroup-opensource/rtldev-middleware-semantic-release-notify-plugin",
"stream-buffers": "^3.0.2"
},
"dependencies": {
"@semantic-release/error": "^4.0.0",
"aggregate-error": "^5.0.0",
"debug": "^4.3.4",
"github-api": "^3.4.0",
"puppeteer": ">=23.4.0",
"yargs": "^17.7.1"
}
}