-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.57 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.57 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
{
"name": "nodejunkie.github.io",
"version": "1.0.1",
"description": "Theme for Github Pages",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 0",
"semantic-release": "semantic-release --no-ci"
},
"repository": {
"type": "git",
"url": "https://github.com/NodeJunkie/nodejunkie.github.io.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/NodeJunkie/nodejunkie.github.io/issues"
},
"homepage": "https://github.com/NodeJunkie/nodejunkie.github.io#readme",
"devDependencies": {
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.2.1",
"@semantic-release/npm": "^7.1.1",
"conventional-changelog": "^3.1.24",
"semantic-release": "^17.4.2",
"semantic-release-gitmoji": "^1.3.4"
},
"release": {
"branches": [
"main"
],
"generateNotes": [
"semantic-release-gitmoji"
],
"analyzeCommits": [
"semantic-release-gitmoji"
],
"plugins": [
"semantic-release-gitmoji",
[
"@semantic-release/changelog",
{
"changelogFile": "CHANGELOG"
}
],
[
"@semantic-release/npm",
{
"npmPublish": false
}
],
[
"@semantic-release/git",
{
"assets": [
"CHANGELOG",
"package.json"
],
"message": ":bookmark: (release) ${nextRelease.version}\n\n${nextRelease.notes}"
}
],
"@semantic-release/github"
]
}
}