forked from saitho/semantic-release-backmerge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.46 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
{
"name": "@saithodev/semantic-release-backmerge",
"description": "semantic-release plugin to back-merge a release into a develop branch",
"version": "1.5.3",
"author": "Mario Lubenka",
"license": "MIT",
"keywords": [
"semantic-release",
"git",
"backmerge",
"Git Flow"
],
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/saitho/semantic-release-backmerge.git"
},
"homepage": "https://github.com/saitho/semantic-release-backmerge",
"scripts": {
"build": "tsc",
"docs:build": "typedoc --out ./docs ./src/ && touch ./docs/.nojekyll",
"test": "jest --detectOpenHandles --coverage --verbose",
"semantic-release": "semantic-release",
"commit": "git-cz"
},
"dependencies": {
"@semantic-release/error": "^2.2.0",
"aggregate-error": "^3.1.0",
"debug": "^4.3.1",
"execa": "^5.0.0",
"lodash": "^4.17.20"
},
"devDependencies": {
"@saithodev/semantic-release-sharedconf-npm": "^2.1.1",
"@types/jest": "^26.0.19",
"@types/lodash": "^4.14.166",
"@types/node": "^14.14.17",
"@types/semantic-release": "^17.2.0",
"commitizen": "^4.2.2",
"cz-conventional-changelog": "^3.3.0",
"jest": "^26.6.3",
"semantic-release": "^17.3.1",
"ts-jest": "^26.4.4",
"ts-mockito": "^2.6.1",
"typedoc": "^0.20.7",
"typescript": "^4.1.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}