-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
92 lines (92 loc) · 2.97 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
{
"name": "mdsanima-render-time",
"version": "0.1.1",
"author": {
"name": "Marcin Różewski",
"email": "[email protected]"
},
"description": "Only for automate versioning and changelog generation",
"repository": "https://github.com/mdsanima-dev/mdsanima-render-time.git",
"homepage": "https://github.com/mdsanima-dev/mdsanima-render-time/#readme",
"license": "GPL",
"project_urls": {
"Documentation": "https://github.com/mdsanima-dev/mdsanima-render-time/",
"Source": "https://github.com/mdsanima-dev/mdsanima-render-time/",
"Bug Tracker": "https://github.com/mdsanima-dev/mdsanima-render-time/issues/"
},
"devDependencies": {
"standard-version": "^9.3.0",
"conventional-changelog": "^5.0.1",
"mdsanima-conventional-changelog": "https://github.com/mdsanima/conventional-changelog/releases/tag/v5.0.1"
},
"standard-version": {
"infile": "CHANGELOG.md",
"bumpFiles": [
{
"filename": "package.json",
"type": "json"
}
],
"scripts": {
"postbump": "./make_release.py && printf '\n bumping version in __init__.py'",
"posttag": "printf '\n Run 'git push --follow-tags origin master' to publish'",
"release": "standard-version --commit-all --sign",
"release-test": "standard-version --dry-run"
},
"skip": {
"bump": false,
"changelog": false,
"commit": true,
"tag": true
},
"types": [
{
"type": "feat",
"section": "FEATURES",
"hidden": false
},
{
"type": "fix",
"section": "BUG FIXES",
"hidden": false
},
{
"type": "docs",
"section": "DOCUMENTATION",
"hidden": false
},
{
"type": "test",
"section": "TESTS",
"hidden": false
},
{
"type": "build",
"section": "BUILD SYSTEM",
"hidden": true
},
{
"type": "ci",
"hidden": true
},
{
"type": "refactor",
"hidden": true
},
{
"type": "chore",
"hidden": true
}
],
"header": "# CHANGELOG\n\nAll notable changes to this project will be documented in this file.\n\nPlease check\n[standard-version](https://github.com/conventional-changelog/standard-version)\nand `README.md` file for commit guidelines. Also you should check\n[conventional-changelog](https://github.com/mdsanima/conventional-changelog)\nfor more detail.\n\nDocomentation for *Blender Addon*\n`MDSANIMA RenderTime` is available\nat [GitHub](https://github.com/mdsanima-dev/mdsanima-render-time/)\nbe sure to check it.\n"
},
"scripts": {
"check": "standard-version --dry-run",
"release": "standard-version --sign",
"release-tag": "standard-version -s -t mdsanima-render-time-",
"alpha": "standard-version --prerelease alpha",
"beta": "standard-version --prerelease beta",
"test": "echo testing...",
"test-skip": "npm run release -- --skip.changelog --dry-run"
}
}