-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.05 KB
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 1.05 KB
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
{
"name": "conviso-github-sync-task",
"version": "1.0.1",
"description": "GitHub Action that triggers a sync to Conviso Platform for a given project of a scanner (e.g.: Fortify, Checkmarx, Dependency Track).",
"main": "dist/index.js",
"license": "MIT",
"private": true,
"packageManager": "yarn@4.12.0",
"engines": {
"node": ">=24"
},
"scripts": {
"clean": "rm -rf dist",
"typecheck": "tsc --noEmit",
"build": "yarn run clean && esbuild src/index.ts --bundle --platform=node --target=node24 --format=cjs --legal-comments=linked --outfile=dist/index.js",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test-e2e": "tsx src/tests/e2e.ts",
"all": "yarn run typecheck && yarn run test && yarn run build"
},
"dependencies": {
"@actions/core": "^3.0.1",
"axios": "^1.19.0"
},
"devDependencies": {
"@types/node": "^24.13.3",
"@vitest/coverage-v8": "^4.1.10",
"esbuild": "^0.28.1",
"tsx": "^4.23.1",
"typescript": "^5.9.3",
"vitest": "^4.1.10"
}
}