-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.8 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
{
"name": "@mixmaxhq/semantic-release-config",
"version": "4.0.0",
"description": "The shared configuration we use for `semantic-release`.",
"files": [
"service",
"package",
"module"
],
"scripts": {
"ci": "npm run lint",
"ci:commitlint": "commitlint-jenkins --pr-only",
"lint": "eslint .",
"test": "echo \"Error: no test specified\" && exit 1",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/mixmaxhq/semantic-release-config.git"
},
"keywords": [
"semantic-release"
],
"author": "Eli Skeggs <[email protected]> (https://mixmax.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mixmaxhq/semantic-release-config/issues"
},
"homepage": "https://github.com/mixmaxhq/semantic-release-config#readme",
"dependencies": {
"@mixmaxhq/semantic-commitlint": "^1.0.3",
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/git": "^10.0.1",
"conventional-changelog-conventionalcommits": "^5.0.0",
"semantic-release": "^22.0.12"
},
"devDependencies": {
"@commitlint/cli": "^17.5.0",
"@commitlint/config-conventional": "^17.4.4",
"@mixmaxhq/commitlint-jenkins": "^1.7.0",
"@mixmaxhq/git-hooks": "^1.3.0",
"@mixmaxhq/prettier-config": "^1.1.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.18.0",
"eslint-config-mixmax": "^5.1.0",
"prettier": "^2.8.6"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
},
"manualPublishMessage": "This repository is configured to use semantic-release for its releases. Please do not release manually.\n"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"publishConfig": {
"access": "public"
}
}