-
Notifications
You must be signed in to change notification settings - Fork 0
/
custom_package.json
54 lines (54 loc) · 1.42 KB
/
custom_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
{
"name": "@gamingapi/<<[ .cus.REPOSITORY_NAME ]>>",
"description": "<<[ .cus.REPOSITORY_DESCRIPTION ]>>",
"publishConfig": {
"access": "public"
},
"keywords": [],
"author": "Jonas Lagoni (jonas-lt@live.dk)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/GamingAPI/<<[ .cus.REPOSITORY_NAME ]>>/issues"
},
"files": [
"/lib",
"./README.md",
"./LICENSE"
],
"homepage": "https://github.com/GamingAPI/<<[ .cus.REPOSITORY_NAME ]>>#readme",
"scripts": {
"generate:assets": "npm run build && npm run docs",
"bump:version": "npm --no-git-tag-version --allow-same-version version $VERSION",
"release": "semantic-release",
"prepublishOnly": "npm run generate:assets"
},
"devDependencies": {
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/github": "^7.0.4",
"@semantic-release/npm": "^7.0.3",
"@semantic-release/release-notes-generator": "^9.0.1",
"conventional-changelog-conventionalcommits": "^4.2.3",
"semantic-release": "^17.0.4"
},
"release": {
"branches": [
"main"
],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "conventionalcommits"
}
],
[
"@semantic-release/release-notes-generator",
{
"preset": "conventionalcommits"
}
],
"@semantic-release/npm",
"@semantic-release/github"
]
}
}