-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
46 lines (46 loc) · 1.15 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
{
"name": "nitpick",
"version": "0.35.0",
"repository": {
"type": "git",
"url": "https://github.com/andreoliwa/nitpick.git"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/changelog",
{
"changelogFile": "CHANGELOG.md"
}
],
[
"@semantic-release/exec",
{
"prepareCmd": "bash ./ci-prepare-cmd.sh ${nextRelease.version}",
"publishCmd": "poetry build && poetry publish --username __token__ --password $PYPI_PASSWORD"
}
],
"@semantic-release/github",
[
"@semantic-release/git",
{
"assets": [
".bumpversion.cfg",
"CHANGELOG.md",
"README.rst",
"docs/conf.py",
"docs/configuration.rst",
"docs/quickstart.rst",
"mega-linter-plugin-nitpick/nitpick.megalinter-descriptor.yml",
"nitpick-style.toml",
"package.json",
"pyproject.toml",
"src/nitpick/__init__.py"
]
}
]
]
}
}