Files
npm-audit-action/package.json
dependabot[bot] 107a3c4a4a Bump @actions/core from 1.2.5 to 1.2.6 (#71)
Bumps [@actions/core](https://github.com/actions/toolkit/tree/HEAD/packages/core) from 1.2.5 to 1.2.6.
- [Release notes](https://github.com/actions/toolkit/releases)
- [Changelog](https://github.com/actions/toolkit/blob/main/packages/core/RELEASES.md)
- [Commits](https://github.com/actions/toolkit/commits/HEAD/packages/core)

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2020-10-14 20:05:40 +09:00

52 lines
1.3 KiB
JSON

{
"name": "npm-audit-action",
"version": "1.5.2",
"private": true,
"description": "GitHub Action to run `npm audit`",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"pack": "ncc build",
"test": "jest",
"all": "npm run build && npm run format && npm run lint && npm run pack && npm test -- --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oke-py/npm-audit-action"
},
"keywords": [
"actions",
"node",
"security",
"vulnerability"
],
"author": "Naoki Oketani <okepy.naoki@gmail.com>",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/github": "^4.0.0",
"@octokit/rest": "^18.0.5",
"axios": "^0.20.0",
"strip-ansi": "^6.0.0"
},
"devDependencies": {
"@types/jest": "^26.0.13",
"@types/node": "^14.10.0",
"@typescript-eslint/parser": "^4.1.0",
"@zeit/ncc": "^0.22.3",
"eslint": "^7.8.1",
"eslint-plugin-github": "^4.1.1",
"eslint-plugin-jest": "^24.0.0",
"graphql": "^15.3.0",
"jest": "^26.4.2",
"jest-circus": "^26.4.2",
"js-yaml": "^3.14.0",
"prettier": "^2.1.1",
"ts-jest": "^26.3.0",
"typescript": "^3.9.7"
}
}