-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.39 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "romeo",
"description": "O Romeo, Romeo, whatfore art coverages Romeo?",
"version": "0.0.1",
"author": "ctfer-io",
"private": true,
"homepage": "https://github.com/ctfer-io/romeo-action",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/ctfer-io/romeo-action.git"
},
"bugs": {
"url": "https://github.com/ctfer-io/romeo-action/issues"
},
"keywords": [
"actions",
"coverage",
"ci",
"golang"
],
"engines": {
"node": ">=21"
},
"scripts": {
"build": "tsc --build",
"ci-test": "npx jest",
"format:write": "npx prettier --write .",
"format:check": "npx prettier --check .",
"lint": "npx eslint",
"all": "npm run format:write && npm run lint && npm run build"
},
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0",
"@pulumi/pulumi": "^3.144.1",
"upath": "^2.0.1"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^8.18.1",
"@typescript-eslint/parser": "^8.18.1",
"eslint": "^8.57.0",
"eslint-plugin-github": "^5.1.4",
"eslint-plugin-jest": "^28.10.0",
"jest": "^29.7.0",
"prettier": "^3.4.2",
"typescript": "^5.7.2"
}
}