gitlab.com/gitlab-org/labkit@v1.21.0/package.json (about) 1 { 2 "name": "labkit", 3 "description": "LabKit is minimalist library to provide functionality for Go services at GitLab.", 4 "repository": { 5 "type": "git", 6 "url": "git+ssh://git@gitlab.com/gitlab-org/labkit.git" 7 }, 8 "author": "GitLab, Inc.", 9 "license": "MIT", 10 "homepage": "https://gitlab.com/gitlab-org/labkit#readme", 11 "devDependencies": { 12 "@commitlint/cli": "^11.0.0", 13 "@commitlint/config-conventional": "^11.0.0", 14 "@semantic-release/gitlab": "^6.2.1", 15 "conventional-changelog-conventionalcommits": "^4.6.0", 16 "semantic-release": "^17.4.4" 17 }, 18 "release": { 19 "plugins": [ 20 [ 21 "@semantic-release/commit-analyzer", 22 { 23 "preset": "conventionalcommits" 24 } 25 ], 26 [ 27 "@semantic-release/release-notes-generator", 28 { 29 "preset": "conventionalcommits" 30 } 31 ], 32 "@semantic-release/gitlab" 33 ] 34 } 35 }