2022-08-12 12:15:51 +00:00
|
|
|
{
|
|
|
|
|
"name": "maven-dependency-tree-action",
|
2022-10-25 16:23:05 +00:00
|
|
|
"version": "3.0.0",
|
2022-08-12 12:15:51 +00:00
|
|
|
"description": "",
|
|
|
|
|
"main": "index.js",
|
|
|
|
|
"scripts": {
|
2022-09-26 16:53:00 +00:00
|
|
|
"base-build": "npm ci && tsc",
|
|
|
|
|
"build": "npm run base-build && npm exec -- @vercel/ncc build --source-map lib/src/index.js",
|
|
|
|
|
"pre-build-exe": "npm run base-build && npm exec -- @vercel/ncc build lib/src/executable/cli.js -o runtime",
|
2022-09-26 14:53:51 +00:00
|
|
|
"build-exe-linux-x64": "npm run pre-build-exe && nexe -i runtime/index.js -t linux-x64-14.15.3 -o cli/maven-dependency-submission-linux-x64",
|
2022-08-12 12:15:51 +00:00
|
|
|
"test": "jest"
|
|
|
|
|
},
|
|
|
|
|
"repository": {
|
|
|
|
|
"type": "git",
|
|
|
|
|
"url": "git+https://github.com/advanced-security/maven-dependency-tree-action.git"
|
|
|
|
|
},
|
|
|
|
|
"keywords": [],
|
|
|
|
|
"author": "GitHub, Inc",
|
|
|
|
|
"license": "MIT",
|
|
|
|
|
"bugs": {
|
|
|
|
|
"url": "https://github.com/advanced-security/maven-dependency-tree-action/issues"
|
|
|
|
|
},
|
|
|
|
|
"homepage": "https://github.com/advanced-security/maven-dependency-tree-action#readme",
|
|
|
|
|
"dependencies": {
|
2022-10-18 17:08:19 +00:00
|
|
|
"@actions/core": "^1.10.0",
|
2022-10-26 12:37:41 +02:00
|
|
|
"@github/dependency-submission-toolkit": "^1.2.6",
|
2022-09-26 14:53:51 +00:00
|
|
|
"commander": "^9.4.0",
|
2022-08-12 12:15:51 +00:00
|
|
|
"packageurl-js": "^0.0.7"
|
|
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
|
|
|
|
"@types/chai": "^4.3.1",
|
|
|
|
|
"@types/jest": "^28.1.6",
|
|
|
|
|
"@vercel/ncc": "^0.34.0",
|
|
|
|
|
"chai": "^4.3.6",
|
|
|
|
|
"jest": "^28.1.3",
|
2022-09-26 14:53:51 +00:00
|
|
|
"nexe": "^4.0.0-rc.1",
|
2022-08-12 12:15:51 +00:00
|
|
|
"ts-jest": "^28.0.7",
|
|
|
|
|
"ts-node": "^10.8.2",
|
|
|
|
|
"typescript": "^4.7.4"
|
|
|
|
|
}
|
2022-10-18 17:08:26 +00:00
|
|
|
}
|