forked from battila7/get-version-action
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 939 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
{
"name": "get-version-action",
"version": "2.3.0",
"description": "A GitHub Action which extracts the version from github.ref.",
"main": "src/index.js",
"scripts": {
"lint": "standard src/**/*.js test/**/*.js",
"lint:fix": "standard --fix src/**/*.js test/**/*.js",
"package": "ncc build src/index.js -o dist",
"test": "jest --coverage",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/battila7/get-version-action.git"
},
"author": "Attila Bagossy",
"license": "MIT",
"bugs": {
"url": "https://github.com/battila7/get-version-action/issues"
},
"homepage": "https://github.com/battila7/get-version-action#readme",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"semver": "^7.3.8"
},
"devDependencies": {
"@vercel/ncc": "^0.36.0",
"jest": "^29.3.1",
"standard": "^17.0.0"
}
}