-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 812 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 812 Bytes
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
{
"name": "@tangro/actions-coverage",
"version": "1.1.19",
"private": true,
"description": "GitHub Action to run coverage",
"main": "lib/main.js",
"scripts": {
"build": "ncc build src/main.ts --minify",
"update-readme": "node scripts/update-readme.js",
"update-dependencies": "npx npm-check-updates -u",
"version": "npm run build && git add -A",
"postversion": "npm run update-readme && git add -A && git commit -m \"updated readme\" && git push"
},
"author": "ankri",
"license": "MIT",
"dependencies": {
"@actions/core": "3.0.1",
"@actions/exec": "3.0.0",
"@tangro/tangro-github-toolkit": "1.0.10",
"@vercel/ncc": "0.38.4"
},
"devDependencies": {
"@types/node": "25.6.0",
"ejs": "5.0.2",
"rimraf": "6.1.3",
"typescript": "6.0.3"
}
}