-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
33 lines (33 loc) · 932 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.2.6",
"@actions/github": "4.0.0",
"semver": "7.3.4"
},
"devDependencies": {
"@vercel/ncc": "0.26.1",
"jest": "26.6.3",
"standard": "16.0.3"
}
}