-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1 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
{
"name": "@bjoluc/semantic-release-config-npm",
"version": "5.0.0",
"description": "semantic-release config for my NPM projects",
"main": ".releaserc.json",
"files": [
".releaserc.json"
],
"scripts": {
"test": "prettier --check ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/bjoluc/semantic-release-config-npm.git"
},
"keywords": [
"semantic-release-config",
"npm",
"github"
],
"author": "bjoluc <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/bjoluc/semantic-release-config-npm/issues"
},
"homepage": "https://github.com/bjoluc/semantic-release-config-npm#readme",
"dependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"conventional-changelog-conventionalcommits": "^6.1.0",
"semantic-release": "^21.0.7"
},
"devDependencies": {
"prettier": "^3.0.0"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"printWidth": 100
}
}