Files

61 lines
1.7 KiB
JSON
Raw Permalink Normal View History

2022-03-31 18:31:39 +02:00
{
"name": "dependency-review-action",
2022-10-24 17:03:38 +02:00
"version": "2.5.1",
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.0.3",
"@octokit/request-error": "^3.0.2",
2022-10-13 06:12:45 +00:00
"ansi-styles": "^6.2.1",
2022-10-13 01:25:32 +00:00
"got": "^12.5.2",
2022-09-19 01:55:04 +00:00
"nodemon": "^2.0.20",
2022-10-26 06:46:16 +00:00
"octokit": "^2.0.10",
2022-10-26 09:01:43 +00:00
"spdx-expression-parse": "^3.0.1",
"spdx-satisfies": "^5.0.1",
2022-10-06 11:19:30 +00:00
"yaml": "^2.1.3",
2022-09-12 01:54:09 +00:00
"zod": "^3.19.1"
2022-03-31 18:31:39 +02:00
},
"devDependencies": {
2022-10-13 11:57:38 +00:00
"@types/jest": "^27.5.2",
2022-10-31 01:33:50 +00:00
"@types/node": "^16.18.3",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
2022-10-26 09:01:43 +00:00
"@types/spdx-expression-parse": "^3.0.2",
"@types/spdx-satisfies": "^0.1.0",
2022-05-26 03:00:41 +00:00
"@vercel/ncc": "^0.34.0",
2022-11-11 01:16:27 +00:00
"esbuild-register": "^3.4.1",
2022-11-08 01:17:47 +00:00
"eslint": "^8.27.0",
"eslint-plugin-github": "^4.4.1",
"eslint-plugin-jest": "^27.1.5",
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",
2022-06-17 01:54:43 +00:00
"prettier": "2.7.1",
2022-04-01 01:32:35 +00:00
"ts-jest": "^27.1.4",
2022-09-28 01:29:19 +00:00
"typescript": "^4.8.4"
2022-03-31 18:31:39 +02:00
}
2022-06-15 11:55:10 +02:00
}