2019-12-08 19:17:13 +09:00
|
|
|
{
|
2019-12-08 22:10:35 +09:00
|
|
|
"name": "npm-audit-action",
|
2023-01-02 02:46:08 +00:00
|
|
|
"version": "2.4.4",
|
2019-12-08 19:17:13 +09:00
|
|
|
"private": true,
|
2019-12-08 22:10:35 +09:00
|
|
|
"description": "GitHub Action to run `npm audit`",
|
2019-12-08 19:17:13 +09:00
|
|
|
"main": "lib/main.js",
|
2025-05-01 12:05:25 +00:00
|
|
|
"engines": {
|
|
|
|
|
"node": ">=20.0.0"
|
|
|
|
|
},
|
2019-12-08 19:17:13 +09:00
|
|
|
"scripts": {
|
|
|
|
|
"build": "tsc",
|
|
|
|
|
"format": "prettier --write **/*.ts",
|
|
|
|
|
"format-check": "prettier --check **/*.ts",
|
|
|
|
|
"lint": "eslint src/**/*.ts",
|
|
|
|
|
"pack": "ncc build",
|
2025-05-02 14:03:34 +00:00
|
|
|
"test": "vitest",
|
|
|
|
|
"test:coverage": "vitest --coverage",
|
|
|
|
|
"all": "npm run build && npm run format && npm run lint && npm run pack && npm run test:coverage"
|
2019-12-08 19:17:13 +09:00
|
|
|
},
|
|
|
|
|
"repository": {
|
|
|
|
|
"type": "git",
|
2019-12-08 22:10:35 +09:00
|
|
|
"url": "git+https://github.com/oke-py/npm-audit-action"
|
2019-12-08 19:17:13 +09:00
|
|
|
},
|
|
|
|
|
"keywords": [
|
|
|
|
|
"actions",
|
|
|
|
|
"node",
|
2019-12-08 22:10:35 +09:00
|
|
|
"security",
|
|
|
|
|
"vulnerability"
|
2019-12-08 19:17:13 +09:00
|
|
|
],
|
2019-12-08 22:10:35 +09:00
|
|
|
"author": "Naoki Oketani <okepy.naoki@gmail.com>",
|
2019-12-08 19:17:13 +09:00
|
|
|
"license": "MIT",
|
|
|
|
|
"dependencies": {
|
2025-05-02 04:25:56 +00:00
|
|
|
"@actions/core": "^1.11.1",
|
2025-05-01 12:32:43 +00:00
|
|
|
"@actions/github": "^6.0.0",
|
|
|
|
|
"@octokit/rest": "^21.1.1",
|
2021-10-09 12:22:18 +09:00
|
|
|
"strip-ansi": "^6.0.1"
|
2019-12-08 19:17:13 +09:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2025-05-01 12:05:25 +00:00
|
|
|
"@types/node": "^20.0.0",
|
2023-10-09 18:35:38 +09:00
|
|
|
"@typescript-eslint/parser": "^6.7.4",
|
2025-05-02 04:37:58 +00:00
|
|
|
"@vercel/ncc": "^0.38.3",
|
2025-05-02 14:17:12 +00:00
|
|
|
"@vitest/coverage-v8": "^3.1.2",
|
2023-10-09 18:35:38 +09:00
|
|
|
"eslint": "^8.51.0",
|
|
|
|
|
"eslint-plugin-github": "^4.10.1",
|
|
|
|
|
"eslint-plugin-jest": "^27.4.2",
|
2021-01-06 04:47:51 +00:00
|
|
|
"js-yaml": "^4.0.0",
|
2025-05-02 04:37:58 +00:00
|
|
|
"prettier": "^3.5.3",
|
2025-05-02 14:03:34 +00:00
|
|
|
"typescript": "^5.8.3",
|
|
|
|
|
"vite": "^6.3.4",
|
|
|
|
|
"vitest": "^3.1.2"
|
2019-12-08 19:17:13 +09:00
|
|
|
}
|
|
|
|
|
}
|