-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
117 lines (117 loc) · 2.69 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "conventional-changelog-wormiecorp",
"version": "1.1.5",
"description": "conventional-changelog preset to be used in the wormiecorp organization",
"main": "index.js",
"scripts": {
"commit": "git-cz",
"prepare": "tsc --build tsconfig.json",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/WormieCorp/conventional-changelog-wormiecorp"
},
"keywords": [
"conventional-changelog",
"preset"
],
"files": [
"conventional-changelog.js",
"conventional-recommended-bump.js",
"index.js",
"parser-opts.js",
"writer-opts.js",
"templates"
],
"author": "Kim J. Nordmo",
"engines": {
"node": ">=8"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/WormieCorp/conventional-changelog-wormiecorp/issues"
},
"homepage": "https://github.com/WormieCorp/conventional-changelog-wormiecorp#readme",
"dependencies": {
"compare-func": "^2.0.0",
"q": "^1.5.1"
},
"devDependencies": {
"@semantic-release/changelog": "5.0.1",
"@semantic-release/commit-analyzer": "8.0.1",
"@semantic-release/git": "9.0.0",
"@semantic-release/github": "7.2.1",
"@semantic-release/npm": "7.1.0",
"@semantic-release/release-notes-generator": "9.0.2",
"@types/compare-func": "1.3.0",
"@types/node": "14.14.37",
"@types/q": "1.5.4",
"commitizen": "4.2.3",
"cz-conventional-changelog": "3.3.0",
"semantic-release": "17.4.2",
"typescript": "4.2.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"release": {
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": null,
"config": "./",
"releaseRules": [
{
"type": "chore",
"scope": "deps",
"release": "patch"
}
]
}
],
[
"@semantic-release/release-notes-generator",
{
"preset": null,
"config": "./",
"parserOpts": {
"generators": [
"license"
]
}
}
],
[
"@semantic-release/changelog",
{
"changelogTitle": "# conventional-changelog-wormiecorp Changelog"
}
],
[
"@semantic-release/npm",
{
"tarballDir": "dist"
}
],
"@semantic-release/git",
[
"@semantic-release/github",
{
"assets": [
{
"path": "dist/*.tgz",
"label": "NPM Package"
}
]
}
]
]
},
"publishConfig": {
"tag": "latest"
}
}