-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
49 lines (49 loc) · 1.22 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
{
"name": "@bjoluc/semantic-release-config-poetry",
"version": "2.2.0",
"description": "semantic-release configuration for Python projects using Poetry ",
"main": "release.config.js",
"files": [
"release.config.js"
],
"scripts": {
"test": "prettier --check ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/bjoluc/semantic-release-config-poetry.git"
},
"keywords": [
"semantic-release-config",
"python",
"poetry",
"pypi",
"github"
],
"author": "bjoluc <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/bjoluc/semantic-release-config-poetry/issues"
},
"homepage": "https://github.com/bjoluc/semantic-release-config-poetry#readme",
"dependencies": {
"@google/semantic-release-replace-plugin": "^1.1.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"conventional-changelog-conventionalcommits": "^5.0.0",
"semantic-release": "^19.0.5"
},
"devDependencies": {
"@bjoluc/semantic-release-config-npm": "^3.0.0",
"prettier": "^2.7.1"
},
"prettier": {
"trailingComma": "es5",
"printWidth": 100,
"useTabs": true
},
"release": {
"extends": "@bjoluc/semantic-release-config-npm"
}
}