Files
dependency-review-action/package.json

63 lines
1.8 KiB
JSON
Raw Normal View History

2022-03-31 18:31:39 +02:00
{
"name": "dependency-review-action",
2023-09-07 21:22:58 +00:00
"version": "3.1.0",
2022-03-31 18:31:39 +02:00
"private": true,
"description": "A GitHub Action for Dependency Review",
"main": "lib/main.js",
"scripts": {
"build": "tsc -p tsconfig.build.json",
2022-03-31 18:31:39 +02:00
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"lint": "eslint src/**/*.ts",
"package": "ncc build --source-map --license licenses.txt",
"test": "jest",
"all": "npm run build && npm run format && npm run lint && npm run package && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/github/dependency-review-action.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "GitHub",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^5.1.1",
2023-10-09 13:16:21 +02:00
"@octokit/plugin-retry": "^6.0.1",
"@octokit/request-error": "^5.0.1",
2023-10-09 13:33:55 +02:00
"@octokit/rest": "^20.0.2",
"@types/jest": "^29.5.5",
"ansi-styles": "^6.2.1",
"got": "^13.0.0",
2023-10-09 13:33:55 +02:00
"jest": "^29.7.0",
"octokit": "^3.1.1",
"packageurl-js": "^1.2.0",
2022-10-26 09:01:43 +00:00
"spdx-expression-parse": "^3.0.1",
"spdx-satisfies": "^5.0.1",
2023-10-09 13:33:55 +02:00
"ts-jest": "^29.1.1",
"yaml": "^2.3.4",
2023-10-05 17:14:25 +02:00
"zod": "^3.22.3"
2022-03-31 18:31:39 +02:00
},
"devDependencies": {
"@types/node": "^16.18.58",
"@types/spdx-expression-parse": "^3.0.4",
"@types/spdx-satisfies": "^0.1.1",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"@vercel/ncc": "^0.38.0",
"esbuild-register": "^3.5.0",
"eslint": "^8.52.0",
"eslint-plugin-github": "^4.10.1",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-prettier": "^5.0.1",
2022-03-31 18:31:39 +02:00
"js-yaml": "^4.1.0",
2023-07-31 08:39:38 +02:00
"nodemon": "^3.0.1",
"prettier": "3.0.3",
"typescript": "^5.2.2"
2022-03-31 18:31:39 +02:00
}
2023-05-31 17:10:00 +02:00
}