Files
dependency-review-action/package.json
T

63 lines
1.8 KiB
JSON
Raw Normal View History

2022-03-31 18:31:39 +02:00
{
"name": "dependency-review-action",
2023-01-09 08:21:47 +01:00
"version": "3.0.3",
2022-03-31 18:31:39 +02:00
"private": true,
"description": "A GitHub Action for Dependency Review",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"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",
"@octokit/plugin-retry": "^4.1.1",
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",
2022-11-17 01:14:38 +00:00
"got": "^12.5.3",
2022-09-19 01:55:04 +00:00
"nodemon": "^2.0.20",
2023-01-30 01:47:40 +00:00
"octokit": "^2.0.14",
2022-10-26 09:01:43 +00:00
"spdx-expression-parse": "^3.0.1",
"spdx-satisfies": "^5.0.1",
2023-01-02 10:20:01 +00:00
"yaml": "^2.2.1",
2023-02-13 02:52:22 +00:00
"zod": "^3.20.6"
2022-03-31 18:31:39 +02:00
},
"devDependencies": {
2022-10-13 11:57:38 +00:00
"@types/jest": "^27.5.2",
2023-03-06 02:15:36 +00:00
"@types/node": "^16.18.14",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@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",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
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-02-27 02:50:27 +00:00
"eslint": "^8.35.0",
"eslint-plugin-github": "^4.6.1",
"eslint-plugin-jest": "^27.2.1",
2022-03-31 18:31:39 +02:00
"jest": "^27.5.1",
"js-yaml": "^4.1.0",
2022-09-19 01:55:04 +00:00
"nodemon": "^2.0.20",
2023-02-13 02:49:57 +00:00
"prettier": "2.8.4",
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
}
2022-06-15 11:55:10 +02:00
}