forked from RadiantGuild/Github.Action.Semver
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.1 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.1 KB
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
{
"name": "get-semver-from-tag-action",
"version": "1.0.2",
"description": "Get a semver from a tag",
"main": "dist/index.js",
"scripts": {
"test": "jest --coverage",
"build": "ncc build src/main.js",
"precommit": "npm run build && git add dist/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LykkeBusiness/get-semver-from-tag-action.git"
},
"keywords": [
"actions",
"node",
"semver",
"git",
"tag"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/LykkeBusiness/get-semver-from-tag-action/issues"
},
"homepage": "https://github.com/LykkeBusiness/get-semver-from-tag-action#readme",
"dependencies": {
"@actions/core": "^1.2.3",
"semver": "^7.1.3"
},
"devDependencies": {
"@zeit/ncc": "^0.20.4",
"jest": "^24.8.0"
},
"jest": {
"testEnvironment": "node",
"collectCoverageFrom": [
"src/get-semver-from-tag.js"
],
"coverageThreshold": {
"global": {
"branches": 80,
"functions": 80,
"lines": 80,
"statements": 80
}
}
}
}