-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 829 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
35
{
"name": "lerna-lcov-aggregate-action",
"version": "1.0.0",
"description": "GitHub action that aggregates multiple LCOV results into one in Lerna monorepo.",
"main": "index.js",
"author": "Rauli Laine <[email protected]>",
"license": "MIT",
"private": true,
"keywords": [
"monorepo",
"coverage",
"lerna",
"lcov",
"github-action"
],
"engines": {
"node": ">=12.0"
},
"homepage": "https://github.com/RauliL/lerna-lcov-aggregate-action",
"repository": {
"type": "git",
"url": "[email protected]:RauliL/lerna-lcov-aggregate-action.git"
},
"bugs": {
"url": "https://github.com/RauliL/lerna-lcov-aggregate-action/issues"
},
"files": [
"action.yml",
"index.js"
],
"dependencies": {
"@actions/core": "^1.6.0",
"lerna-lcov-aggregate": "^1.0.0"
}
}