1
0
Fork 0
mirror of https://github.com/imjasonh/govulncheck-action synced 2026-07-08 16:56:01 +00:00
govulncheck-action/package.json
dependabot[bot] 90b2dda665
chore(deps-dev): bump lint-staged in the npm-dependencies group (#46)
Bumps the npm-dependencies group with 1 update: [lint-staged](https://github.com/lint-staged/lint-staged).


Updates `lint-staged` from 16.2.3 to 16.2.4
- [Release notes](https://github.com/lint-staged/lint-staged/releases)
- [Changelog](https://github.com/lint-staged/lint-staged/blob/main/CHANGELOG.md)
- [Commits](https://github.com/lint-staged/lint-staged/compare/v16.2.3...v16.2.4)

---
updated-dependencies:
- dependency-name: lint-staged
  dependency-version: 16.2.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-13 21:30:06 +00:00

60 lines
1.3 KiB
JSON

{
"name": "govulncheck-action",
"version": "1.0.0",
"description": "GitHub Action to run govulncheck and annotate vulnerabilities",
"main": "index.js",
"scripts": {
"build": "ncc build index.js -o dist --source-map --license licenses.txt",
"test": "jest",
"lint": "eslint src/**/*.js",
"format": "prettier --write 'src/**/*.js'",
"format:check": "prettier --check 'src/**/*.js'",
"prepare": "husky",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:local": "node test-local.js"
},
"keywords": [
"github",
"action",
"govulncheck",
"vulnerability",
"security",
"go"
],
"author": "",
"license": "Apache-2.0",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.0"
},
"devDependencies": {
"@vercel/ncc": "^0.38.4",
"eslint": "^9.37.0",
"husky": "^9.1.7",
"jest": "^30.2.0",
"lint-staged": "^16.2.4",
"prettier": "^3.6.2"
},
"jest": {
"testEnvironment": "node",
"collectCoverageFrom": [
"index.js",
"lib/**/*.js"
],
"coverageThreshold": {
"global": {
"branches": 80,
"functions": 95,
"lines": 95,
"statements": 95
}
}
},
"lint-staged": {
"src/**/*.js": [
"prettier --write"
]
}
}