-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1003 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 1003 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
29
30
31
32
33
34
35
36
{
"name": "@tangro/actions-test",
"version": "1.1.28",
"private": true,
"description": "Run jest tests, add status and checks",
"main": "lib/main.js",
"scripts": {
"build": "rimraf dist && 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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tangro/actions-test.git"
},
"keywords": [
"actions"
],
"author": "ankri",
"license": "MIT",
"dependencies": {
"@actions/core": "3.0.0",
"@actions/exec": "3.0.0",
"@jest/test-result": "30.3.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"
}
}