Convert from spdx parser to yaml - boilerplate

This commit is contained in:
Justin Hutchings
2023-01-19 20:10:29 +00:00
parent 18b183bb96
commit 6de9c7319f
17 changed files with 528 additions and 76371 deletions
+11 -6
View File
@@ -1,12 +1,14 @@
{
"name": "spdx-to-dependency-graph-action",
"name": "Conda-dependency-submission-action",
"version": "1.0.0",
"description": "SPDX to Dependency Graph Action",
"description": "Conda dependency submission action",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"base-build": "npm ci && tsc",
"build": "npm run base-build && npm exec -- @vercel/ncc build --source-map lib/src/index.js",
"prepare": "ncc build index.js -o dist --source-map --license licenses.txt",
"test": "jest",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"all": "npm run lint && npm run prepare && npm run test"
},
"repository": {
@@ -28,11 +30,14 @@
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"@github/dependency-submission-toolkit": "^1.2.7",
"fs": "^0.0.1-security"
"fs": "^0.0.1-security",
"yaml": "^2.2.1"
},
"devDependencies": {
"eslint": "^8.29.0",
"@types/jest": "^29.2.6",
"@vercel/ncc": "^0.36.0",
"jest": "^29.3.1"
"eslint": "^8.29.0",
"jest": "^29.3.1",
"ts-jest": "^29.0.5"
}
}