-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.92 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
{
"name": "@mixmaxhq/commitlint-jenkins",
"version": "1.6.0",
"description": "Lint all relevant commits for a change or PR on Jenkins CI",
"main": "src/index.js",
"bin": {
"commitlint-jenkins": "./src/index.js"
},
"files": [
"src"
],
"scripts": {
"ci": "npm run lint",
"ci:commitlint": "node . --pr-only",
"lint": "eslint .",
"prepublishOnly": "if [ \"$CI\" = '' ]; then node -p 'JSON.parse(process.env.npm_package_config_manualPublishMessage)'; exit 1; fi",
"semantic-release": "semantic-release",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/mixmaxhq/commitlint-jenkins.git"
},
"author": "Mixmax <hello@mixmax.com> (https://mixmax.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mixmaxhq/commitlint-jenkins/issues"
},
"homepage": "https://github.com/mixmaxhq/commitlint-jenkins#readme",
"dependencies": {
"@commitlint/cli": "^12.1.3",
"@octokit/rest": "^17.2.0",
"execa": "^3.2.0",
"hosted-git-info": "^3.0.2",
"lodash": "^4.17.15",
"yargs": "^14.2.0"
},
"devDependencies": {
"@commitlint/config-conventional": "^12.1.3",
"@mixmaxhq/git-hooks": "^1.1.0",
"@mixmaxhq/prettier-config": "^1.0.0",
"@mixmaxhq/semantic-release-config": "^2.0.2",
"cz-conventional-changelog": "^3.0.2",
"eslint": "^6.8.0",
"eslint-config-mixmax": "^4.11.2",
"prettier": "^1.19.1",
"semantic-release": "^20.0.2"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"release": {
"extends": "@mixmaxhq/semantic-release-config"
},
"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"
},
"publishConfig": {
"access": "public"
}
}