forked from olegtarasov/get-tag
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
34 lines (34 loc) · 943 Bytes
/
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
{
"name": "get-git-tag",
"version": "3.0.2",
"private": true,
"description": "Get the current git tag",
"main": "index.js",
"scripts": {
"test": "standard",
"release": "git push --follow-tags && gh-release -y",
"version": "npm run build && auto-changelog -p --template keepachangelog auto-changelog --breaking-pattern 'BREAKING CHANGE:' && git add CHANGELOG.md dist",
"build": "rm -rf dist && ncc build index.js -o dist -s"
},
"repository": {
"type": "git",
"url": "git+https://github.com/little-core-labs/get-git-tag.git"
},
"author": "Bret Comnes <bcomnes@gmail.com> (https://bret.io/)",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/github": "^4.0.0"
},
"devDependencies": {
"@vercel/ncc": "^0.26.1",
"auto-changelog": "^2.2.0",
"gh-release": "^4.0.3",
"standard": "^16.0.2"
},
"standard": {
"ignore": [
"dist"
]
}
}