forked from mathieudutour/github-tag-action
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
59 lines (59 loc) · 1.75 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
{
"name": "github-tag-action",
"version": "4.1.0",
"private": true,
"description": "A Github Action to automatically bump and tag master, on merge, with the latest SemVer formatted version.",
"main": "src/main.ts",
"scripts": {
"build": "ncc build --source-map",
"test": "jest",
"package": "ncc build --source-map"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mathieudutour/github-tag-action.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "Mathieu Dutour",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/exec": "^1.0.1",
"@actions/github": "^1.1.0",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/release-notes-generator": "^9.0.1",
"conventional-changelog": "^3.1.23",
"conventional-changelog-atom": "^2.0.7",
"conventional-changelog-codemirror": "^2.0.7",
"conventional-changelog-conventionalcommits": "^4.4.0",
"conventional-changelog-ember": "^2.0.8",
"conventional-changelog-eslint": "^3.0.8",
"conventional-changelog-express": "^2.0.5",
"conventional-changelog-jshint": "^2.0.8",
"semver": "^6.3.0",
"yargs-parser": "^20.0.0"
},
"devDependencies": {
"@types/intercept-stdout": "^0.1.0",
"@types/jest": "^26.0.7",
"@types/node": "^14.0.25",
"@typescript-eslint/parser": "^3.7.0",
"@zeit/ncc": "^0.22.3",
"capture-stdout": "^1.0.0",
"eslint": "^7.5.0",
"eslint-plugin-github": "^4.1.1",
"eslint-plugin-jest": "^23.18.0",
"fs": "0.0.1-security",
"intercept-stdout": "^0.1.2",
"jest": "^24.9.0",
"jest-circus": "^26.1.0",
"js-yaml": "^3.14.0",
"prettier": "2.0.5",
"ts-jest": "^26.3.0",
"typescript": "^3.9.7"
}
}