-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
58 lines (58 loc) · 1.48 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
{
"name": "whmcs",
"description": "INWX WHMCS Registrar Module",
"version": "0.0.0-semantic-release",
"private": true,
"scripts": {
"semantic-release": "dotenv -- semantic-release",
"prepare": "bash -c 'mkdir -p ./vendor/bin ; bash <(curl https://raw.githubusercontent.com/rhysd/actionlint/main/scripts/download-actionlint.bash) latest ./vendor/bin/' ; husky"
},
"keywords": [],
"author": {},
"license": "MIT",
"type": "module",
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@hexonet/semantic-release-whmcs": "^5.0.49",
"@semantic-release/github": "^10.3.5",
"cz-conventional-changelog": "^3.3.0",
"dotenv-cli": "^7.4.4",
"husky": "^9.1.7",
"lint-staged": "^15.3.0",
"semantic-release": "^23.1.1"
},
"release": {
"tagFormat": "${version}",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/github",
{
"assets": [
{
"path": "release.zip"
},
{
"path": "checksum.txt"
}
]
}
],
"@hexonet/semantic-release-whmcs"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"volta": {
"node": "20.13.1",
"pnpm": "9.1.2"
},
"lint-staged": {
".github/workflows/**/*.yml": "./vendor/bin/actionlint"
}
}