-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
101 lines (101 loc) · 2.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
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
93
94
95
96
97
98
99
100
101
{
"name": "@sbolel/osx-setup",
"version": "0.0.0-semantic-release",
"description": "osx-setup and osx-security scripts",
"main": "index.js",
"private": true,
"scripts": {
"test": "standard",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "[email protected]:sbolel/osx-setup.git"
},
"keywords": [
"macos",
"homebrew",
"security",
"setup"
],
"author": "Sinan Bolel <[email protected]> (https://sinanbolel.com)",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/sbolel/osx-setup/issues"
},
"homepage": "https://github.com/sbolel/osx-setup#readme",
"resolutions": {
"mem": ">=4.0.0",
"yargs-parser": ">=18.1.2"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/github": "^7.1.1",
"@semantic-release/npm": "^7.0.6",
"@semantic-release/release-notes-generator": "^9.0.1",
"husky": "^4.3.0",
"semantic-release": "^17.2.3",
"standard": "^14.3.4"
},
"husky": {
"hooks": {
"pre-commit": "standard --fix",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"release": {
"private": true,
"branches": [
"master",
"next",
{
"name": "alpha",
"prerelease": true
},
{
"name": "beta",
"prerelease": true
}
],
"tagFormat": "v${version}",
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "conventionalcommits"
}
],
[
"@semantic-release/changelog",
{
"changelogFile": "CHANGELOG.md"
}
],
"@semantic-release/release-notes-generator",
[
"@semantic-release/npm",
{
"npmPublish": false
}
],
[
"@semantic-release/github",
{
"assets": [
"CHANGELOG.md",
"README.md"
]
}
]
],
"preset": "conventionalcommits"
}
}