{ "name": "dependency-review-action", "version": "0.0.1", "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": { "@actions/core": "^1.8.0", "@actions/github": "^5.0.1", "@octokit/plugin-retry": "^3.0.9", "@octokit/request-error": "^2.1.0", "ansi-styles": "^6.1.0", "got": "^12.0.4", "nodemon": "^2.0.16", "yaml": "^2.1.0", "zod": "^3.15.1" }, "devDependencies": { "@types/node": "^17.0.31", "@typescript-eslint/eslint-plugin": "^5.22.0", "@typescript-eslint/parser": "^5.22.0", "@vercel/ncc": "^0.33.4", "esbuild-register": "^3.3.2", "eslint": "^8.15.0", "eslint-plugin-github": "^4.3.6", "eslint-plugin-jest": "^26.1.5", "jest": "^27.5.1", "js-yaml": "^4.1.0", "nodemon": "^2.0.16", "prettier": "2.6.2", "ts-jest": "^27.1.4", "typescript": "^4.6.4" } }