Files

55 lines
1.4 KiB
JSON
Raw Permalink Normal View History

2022-03-31 18:31:39 +02:00
{
"name": "dependency-review-action",
2022-07-14 09:31:49 +02:00
"version": "2.0.4",
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-08-12 16:04:10 +00:00
"@actions/core": "^1.9.1",
2022-05-16 21:15:27 +00:00
"@actions/github": "^5.0.3",
2022-03-31 18:31:39 +02:00
"@octokit/plugin-retry": "^3.0.9",
"@octokit/request-error": "^3.0.1",
2022-03-31 18:31:39 +02:00
"ansi-styles": "^6.1.0",
2022-08-08 01:50:21 +00:00
"got": "^12.3.1",
2022-07-06 02:07:14 +00:00
"nodemon": "^2.0.19",
2022-06-07 01:33:07 +00:00
"yaml": "^2.1.1",
2022-08-12 16:04:10 +00:00
"zod": "^3.18.0"
2022-03-31 18:31:39 +02:00
},
"devDependencies": {
2022-08-16 05:44:24 +00:00
"@types/node": "^16.11.49",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
2022-05-26 03:00:41 +00:00
"@vercel/ncc": "^0.34.0",
2022-06-06 11:32:09 +00:00
"esbuild-register": "^3.3.3",
2022-08-15 01:55:22 +00:00
"eslint": "^8.22.0",
"eslint-plugin-github": "^4.3.7",
"eslint-plugin-jest": "^26.8.3",
2022-03-31 18:31:39 +02:00
"jest": "^27.5.1",
"js-yaml": "^4.1.0",
2022-07-06 02:07:14 +00:00
"nodemon": "^2.0.19",
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-06-20 01:46:55 +00:00
"typescript": "^4.7.4"
2022-03-31 18:31:39 +02:00
}
2022-06-15 11:55:10 +02:00
}