-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.65 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
{
"name": "corda5-cli-action",
"version": "2.0.1",
"private": true,
"description": "Adds Corda5 CLI to your GitHub actions",
"main": "dist/index.js",
"scripts": {
"build": "ncc build index.ts",
"pretest": "npm run build",
"test": "jest --testTimeout=120000 --verbose ./test"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@kie/act-js": "^2.0.6",
"@kie/mock-github": "^1.0.3",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/jest": "^29.1.2",
"@types/node": "^18.8.5",
"jest": "^29.1.2",
"semantic-release": "^21.0.7",
"semantic-release-replace-plugin": "^1.2.6",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"tsc": "^2.0.4",
"typescript": "^4.8.4"
},
"dependencies": {
"@actions/exec": "^1.1.0",
"@actions/http-client": "^1.0.11",
"@actions/io": "^1.1.1",
"@actions/tool-cache": "^1.7.1",
"@actions/core": "^1.10.0",
"@octokit/rest": "^19.0.5",
"@vercel/ncc": "^0.34.0",
"compare-versions": "^4.1.3",
"axios": "^1.1.3",
"http-proxy-agent": "^5.0.0"
},
"release": {
"branch": "master",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/changelog",
{
"changelogFile": "docs/CHANGELOG.md",
"changelogTitle": "# Changelog\n\nAll notable changes to this project will be documented in this file.\nThe format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),\nand this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html)."
}
],
"@semantic-release/npm",
[
"semantic-release-replace-plugin",
{
"replacements": [
{
"files": [
"README.md"
],
"from": "\\bcorda5-cli-action@v.*",
"to": "corda5-cli-action@v${nextRelease.version}",
"results": [
{
"file": "README.md",
"hasChanged": true,
"numMatches": 1,
"numReplacements": 1
}
],
"countMatches": true
}
]
}
],
[
"@semantic-release/git",
{
"assets": [
".env",
".env.*",
"README.md",
"docs/CHANGELOG.md",
"package.json",
"package-lock.json",
"npm-shrinkwrap.json"
],
"message": "chore(release): ${nextRelease.version} \n\n${nextRelease.notes}"
}
]
]
}
}