-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.41 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
{
"name": "mern-blog",
"version": "0.1.2",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"cm": "cz",
"version": "auto-changelog -p && git add HISTORY.md",
"release-same-version": "git flow release start next && git flow release finish -n next",
"release-minor": "git flow release start next && npm version minor && git flow release finish -n next",
"release-patch": "git flow release start next && npm version patch && git flow release finish -n next",
"push": "git checkout main && git push && git checkout develop && git push"
},
"auto-changelog": {
"output": "HISTORY.md",
"template": "keepachangelog",
"unreleased": true,
"commitLimit": false,
"ignoreCommitPattern": "^(build|chore|ci|docs|refactor|style|test|Initial.*|initial.*|Merge.*)"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WhiteDevilMan/mern-blog.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/WhiteDevilMan/mern-blog/issues"
},
"homepage": "https://github.com/WhiteDevilMan/mern-blog#readme",
"devDependencies": {
"auto-changelog": "^2.4.0",
"commitizen": "^4.2.6",
"cz-conventional-changelog": "^3.3.0",
"git-flow": "^0.2.0",
"prettier": "^2.8.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}