-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
executable file
·54 lines (54 loc) · 1.26 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
{
"name": "extract-changelog-release",
"version": "1.0.2",
"description": "Extract release notes from latest entry in standard-version changelog",
"main": "./dist/index.js",
"bin": "./dist/index.js",
"scripts": {
"compile": "tsc",
"build": "yarn clean && yarn compile",
"clean": "rimraf dist",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/nonara/extract-changelog-release.git"
},
"author": "Ron S.",
"license": "MIT",
"bugs": {
"url": "https://github.com/nonara/extract-changelog-release/issues"
},
"files": [
"dist",
"README.md",
"CHANGELOG.md"
],
"keywords": [
"GitHub Actions",
"GH Actions",
"actions",
"standard-version",
"conventional-commits",
"conventional commits",
"automation",
"automating",
"GitHub Release",
"GH release"
],
"homepage": "https://github.com/nonara/extract-changelog-release#readme",
"dependencies": {
"minimist": "^1.2.5"
},
"devDependencies": {
"typescript": "^4.3.5",
"rimraf": "^3.0.2",
"@types/node": "^16.6.1",
"@types/minimist": "^1.2.2",
"ts-node": "^10.2.0",
"jest": "^27.0.6",
"@types/jest": "^27.0.1",
"ts-jest": "^27.0.4",
"standard-version": "^9.3.1"
}
}