2022-03-31 18:31:39 +02:00
|
|
|
{
|
|
|
|
|
"name": "dependency-review-action",
|
2023-05-31 17:10:00 +02:00
|
|
|
"version": "3.0.6",
|
2022-03-31 18:31:39 +02:00
|
|
|
"private": true,
|
|
|
|
|
"description": "A GitHub Action for Dependency Review",
|
|
|
|
|
"main": "lib/main.js",
|
|
|
|
|
"scripts": {
|
2023-02-27 16:05:03 +00:00
|
|
|
"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": {
|
2022-09-30 01:45:02 +00:00
|
|
|
"@actions/core": "^1.10.0",
|
2022-10-03 02:05:00 +00:00
|
|
|
"@actions/github": "^5.1.1",
|
2023-06-12 01:59:03 +00:00
|
|
|
"@octokit/plugin-retry": "^5.0.2",
|
2023-01-04 20:55:58 +00:00
|
|
|
"@octokit/request-error": "^2.1.0",
|
2022-10-13 06:12:45 +00:00
|
|
|
"ansi-styles": "^6.2.1",
|
2023-06-05 01:58:58 +00:00
|
|
|
"got": "^13.0.0",
|
2023-03-27 05:32:36 +00:00
|
|
|
"nodemon": "^2.0.22",
|
2023-05-22 02:01:13 +00:00
|
|
|
"octokit": "^2.0.16",
|
2023-04-06 09:37:42 +02:00
|
|
|
"packageurl-js": "^1.0.2",
|
2022-10-26 09:01:43 +00:00
|
|
|
"spdx-expression-parse": "^3.0.1",
|
|
|
|
|
"spdx-satisfies": "^5.0.1",
|
2023-05-29 02:00:41 +00:00
|
|
|
"yaml": "^2.3.1",
|
2023-03-13 02:05:51 +00:00
|
|
|
"zod": "^3.21.4"
|
2022-03-31 18:31:39 +02:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2022-10-13 11:57:38 +00:00
|
|
|
"@types/jest": "^27.5.2",
|
2023-06-12 01:59:53 +00:00
|
|
|
"@types/node": "^16.18.35",
|
2023-01-16 02:03:33 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "^5.48.1",
|
2023-01-09 01:41:54 +00:00
|
|
|
"@typescript-eslint/parser": "^5.48.0",
|
2022-10-26 09:01:43 +00:00
|
|
|
"@types/spdx-expression-parse": "^3.0.2",
|
|
|
|
|
"@types/spdx-satisfies": "^0.1.0",
|
2023-06-12 05:17:03 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "^5.59.9",
|
2023-06-12 01:58:41 +00:00
|
|
|
"@typescript-eslint/parser": "^5.59.9",
|
2023-01-30 01:49:32 +00:00
|
|
|
"@vercel/ncc": "^0.36.1",
|
2023-01-02 01:17:15 +00:00
|
|
|
"esbuild-register": "^3.4.2",
|
2023-05-22 01:59:24 +00:00
|
|
|
"eslint": "^8.41.0",
|
2023-06-05 01:59:21 +00:00
|
|
|
"eslint-plugin-github": "^4.8.0",
|
2023-01-09 06:55:47 +00:00
|
|
|
"eslint-plugin-jest": "^27.2.1",
|
2022-03-31 18:31:39 +02:00
|
|
|
"jest": "^27.5.1",
|
|
|
|
|
"js-yaml": "^4.1.0",
|
2023-03-27 05:32:36 +00:00
|
|
|
"nodemon": "^2.0.22",
|
2023-04-24 02:01:16 +00:00
|
|
|
"prettier": "2.8.8",
|
2022-04-01 01:32:35 +00:00
|
|
|
"ts-jest": "^27.1.4",
|
2023-02-06 02:03:23 +00:00
|
|
|
"typescript": "^4.9.5"
|
2022-03-31 18:31:39 +02:00
|
|
|
}
|
2023-05-31 17:10:00 +02:00
|
|
|
}
|