Files
npm-audit-action/package.json
Naoki Oketani e434d1ce70 update dependencies (#96)
* Bump @actions/core from 1.3.0 to 1.6.0

* Bump @actions/github from 4.0.0 to 5.0.0

* Bump @octokit/rest from 18.5.6 to 18.12.0

* Bump strip-ansi from 6.0.0 to 6.0.1
2021-10-09 12:22:18 +09:00

52 lines
1.3 KiB
JSON

{
"name": "npm-audit-action",
"version": "1.8.1",
"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.6.0",
"@actions/github": "^5.0.0",
"@octokit/rest": "^18.12.0",
"axios": "^0.21.2",
"strip-ansi": "^6.0.1"
},
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/node": "^14.14.20",
"@typescript-eslint/parser": "^4.31.2",
"@vercel/ncc": "^0.31.1",
"eslint": "^7.32.0",
"eslint-plugin-github": "^4.3.0",
"eslint-plugin-jest": "^24.4.2",
"graphql": "^15.4.0",
"jest": "^27.2.2",
"jest-circus": "^27.2.2",
"js-yaml": "^4.0.0",
"prettier": "^2.4.1",
"ts-jest": "^27.0.5",
"typescript": "^3.9.7"
}
}