2019-12-08 19:17:13 +09:00
|
|
|
{
|
2019-12-08 22:10:35 +09:00
|
|
|
"name": "npm-audit-action",
|
2025-05-03 13:54:49 +00:00
|
|
|
"version": "3.0.0",
|
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-03 02:15:44 +00:00
|
|
|
"type": "module",
|
2025-05-05 10:08:22 +00:00
|
|
|
"exports": {
|
|
|
|
|
".": "./dist/index.js"
|
|
|
|
|
},
|
2025-05-01 12:05:25 +00:00
|
|
|
"engines": {
|
|
|
|
|
"node": ">=20.0.0"
|
|
|
|
|
},
|
2019-12-08 19:17:13 +09:00
|
|
|
"scripts": {
|
2025-05-05 12:32:22 +00:00
|
|
|
"bundle": "npm run format:write && npm run package",
|
|
|
|
|
"format:write": "npx prettier --write .",
|
|
|
|
|
"format:check": "npx prettier --check .",
|
2025-05-05 13:15:49 +00:00
|
|
|
"lint": "npx eslint .",
|
2025-05-05 10:37:01 +00:00
|
|
|
"package": "npx rollup --config rollup.config.ts --configPlugin @rollup/plugin-typescript",
|
2025-05-03 12:20:53 +00:00
|
|
|
"test": "vitest --run",
|
|
|
|
|
"test:coverage": "vitest --run --coverage",
|
2025-05-05 12:32:22 +00:00
|
|
|
"all": "npm run format:write && npm run lint && npm run test:coverage && npm run package"
|
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-12 10:13:28 +00:00
|
|
|
"@actions/github": "^6.0.1",
|
2025-05-26 10:18:04 +00:00
|
|
|
"@octokit/rest": "^22.0.0",
|
2025-05-03 02:15:44 +00:00
|
|
|
"strip-ansi": "^7.1.0"
|
2019-12-08 19:17:13 +09:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2025-05-05 13:15:49 +00:00
|
|
|
"@eslint/compat": "^1.2.9",
|
|
|
|
|
"@eslint/eslintrc": "^3.3.1",
|
2025-05-19 10:02:43 +00:00
|
|
|
"@eslint/js": "^9.27.0",
|
2025-05-05 13:33:29 +00:00
|
|
|
"@rollup/plugin-commonjs": "^28.0.3",
|
2025-05-05 13:20:44 +00:00
|
|
|
"@rollup/plugin-node-resolve": "^16.0.1",
|
2025-05-05 12:51:14 +00:00
|
|
|
"@rollup/plugin-typescript": "^12.1.2",
|
2025-05-26 10:15:38 +00:00
|
|
|
"@types/node": "^20.17.50",
|
2025-05-19 10:02:43 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "^8.32.1",
|
|
|
|
|
"@typescript-eslint/parser": "^8.32.1",
|
2025-05-26 10:15:38 +00:00
|
|
|
"@vitest/coverage-v8": "^3.1.4",
|
2025-05-19 10:02:43 +00:00
|
|
|
"eslint": "^9.27.0",
|
2025-05-12 10:16:08 +00:00
|
|
|
"eslint-config-prettier": "^10.1.5",
|
2025-05-26 10:15:38 +00:00
|
|
|
"eslint-import-resolver-typescript": "^4.4.1",
|
2025-05-05 13:15:49 +00:00
|
|
|
"eslint-plugin-import": "^2.31.0",
|
|
|
|
|
"eslint-plugin-prettier": "^5.4.0",
|
2025-05-26 10:15:38 +00:00
|
|
|
"globals": "^16.2.0",
|
2025-11-15 10:51:41 +00:00
|
|
|
"js-yaml": "^4.1.1",
|
2025-05-02 04:37:58 +00:00
|
|
|
"prettier": "^3.5.3",
|
2025-05-26 10:15:38 +00:00
|
|
|
"rollup": "^4.41.1",
|
2025-05-05 10:08:22 +00:00
|
|
|
"ts-node": "^10.9.2",
|
2025-06-30 11:55:19 +00:00
|
|
|
"tslib": "^2.8.1",
|
2025-05-02 14:03:34 +00:00
|
|
|
"typescript": "^5.8.3",
|
2025-10-21 02:14:32 +00:00
|
|
|
"vite": "^6.4.1",
|
2025-05-02 14:03:34 +00:00
|
|
|
"vitest": "^3.1.2"
|
2019-12-08 19:17:13 +09:00
|
|
|
}
|
2025-05-05 11:12:23 +00:00
|
|
|
}
|