62 lines
1.7 KiB
JSON
62 lines
1.7 KiB
JSON
{
|
|
"name": "dependency-review-action",
|
|
"version": "3.0.6",
|
|
"private": true,
|
|
"description": "A GitHub Action for Dependency Review",
|
|
"main": "lib/main.js",
|
|
"scripts": {
|
|
"build": "tsc -p tsconfig.build.json",
|
|
"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.10.0",
|
|
"@actions/github": "^5.1.1",
|
|
"@octokit/plugin-retry": "^5.0.4",
|
|
"@octokit/request-error": "^2.1.0",
|
|
"ansi-styles": "^6.2.1",
|
|
"got": "^13.0.0",
|
|
"octokit": "^2.1.0",
|
|
"packageurl-js": "^1.0.2",
|
|
"spdx-expression-parse": "^3.0.1",
|
|
"spdx-satisfies": "^5.0.1",
|
|
"yaml": "^2.3.1",
|
|
"zod": "^3.21.4"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^27.5.2",
|
|
"@types/node": "^16.18.38",
|
|
"@types/spdx-expression-parse": "^3.0.2",
|
|
"@types/spdx-satisfies": "^0.1.0",
|
|
"@typescript-eslint/eslint-plugin": "^6.2.0",
|
|
"@typescript-eslint/parser": "^6.2.0",
|
|
"@vercel/ncc": "^0.36.1",
|
|
"esbuild-register": "^3.4.2",
|
|
"eslint": "^8.44.0",
|
|
"eslint-plugin-github": "^4.8.0",
|
|
"eslint-plugin-jest": "^27.2.2",
|
|
"eslint-plugin-prettier": "^5.0.0",
|
|
"jest": "^27.5.1",
|
|
"js-yaml": "^4.1.0",
|
|
"nodemon": "^3.0.1",
|
|
"prettier": "3.0.0",
|
|
"ts-jest": "^27.1.4",
|
|
"typescript": "^4.9.5"
|
|
}
|
|
}
|