generated from actions/javascript-action
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.25 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
{
"name": "conventional-changelog-reader-action",
"version": "1.1.0",
"description": "A GitHub action to read and get data from the CHANGELOG.md files following the Conventional Changelog standard",
"main": "index.js",
"author": "Artem Laman <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/artlaman/conventional-changelog-reader-action#readme",
"scripts": {
"lint": "eslint src/**/*.js",
"package": "ncc build index.js -o dist",
"test": "npm run lint && jest",
"version": "conventional-changelog -p conventionalcommits -i CHANGELOG.md -s && git add CHANGELOG.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/artlaman/conventional-changelog-reader-action.git"
},
"keywords": [
"github",
"workflow",
"github-actions",
"actions",
"changelog",
"conventional-commits"
],
"bugs": {
"url": "https://github.com/artlaman/conventional-changelog-reader-action/issues"
},
"dependencies": {
"@actions/core": "^1.2.5"
},
"devDependencies": {
"@types/jest": "^27.2.5",
"@types/semver": "^7.3.3",
"@vercel/ncc": "^0.33.3",
"conventional-changelog-cli": "^2.2.2",
"eslint": "^8.0.0",
"jest": "^27.5.1",
"semver": "^7.3.3"
}
}