generated from actions/typescript-action
-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
36 lines (36 loc) · 843 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
36
{
"name": "actions-goveralls",
"version": "0.0.0",
"private": true,
"description": "Coveralls GitHub Action with Go integration powered by mattn/goveralls",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"test": "jest",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shogo82148/actions-goveralls.git"
},
"keywords": [
"actions",
"coveralls",
"go"
],
"author": "Ichinose Shogo",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^20.17.1",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"typescript": ">=5.5.4"
}
}