forked from shogo82148/actions-goveralls
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 869 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
37
{
"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.2.3",
"@actions/exec": "^1.0.3"
},
"devDependencies": {
"@types/jest": "^25.1.4",
"@types/node": "^13.9.5",
"jest": "^25.2.4",
"jest-circus": "^25.2.4",
"prettier": "^2.0.2",
"ts-jest": "^25.3.0",
"typescript": "^3.8.3"
}
}