Files
attest-sbom/package.json
T

92 lines
2.2 KiB
JSON
Raw Permalink Normal View History

2024-02-20 11:28:19 -08:00
{
2024-04-25 12:41:39 -07:00
"name": "actions/attest-sbom",
"description": "Generate signed SBOM attestations",
2025-08-28 15:33:55 -07:00
"version": "2.0.0",
2024-02-20 11:28:19 -08:00
"author": "",
"private": true,
2024-04-25 12:41:39 -07:00
"homepage": "https://github.com/actions/attest-sbom",
2024-02-20 11:28:19 -08:00
"repository": {
"type": "git",
2024-04-25 12:41:39 -07:00
"url": "git+https://github.com/actions/attest-sbom.git"
2024-02-20 11:28:19 -08:00
},
"bugs": {
2024-04-25 12:41:39 -07:00
"url": "https://github.com/actions/attest-sbom/issues"
2024-02-20 11:28:19 -08:00
},
"keywords": [
"actions",
2024-04-25 12:41:39 -07:00
"attestation",
"sbom"
2024-02-20 11:28:19 -08:00
],
"exports": {
".": "./dist/index.js"
},
"engines": {
2025-08-28 15:33:55 -07:00
"node": ">=24"
2024-02-20 11:28:19 -08:00
},
"scripts": {
"bundle": "npm run format:write && npm run package",
"ci-test": "jest",
"format:write": "prettier --write **/*.ts",
"format:check": "prettier --check **/*.ts",
2025-08-28 15:21:40 -07:00
"lint:eslint": "npx eslint",
"lint:markdown": "npx markdownlint --config .markdown-lint.yml \"*.md\"",
2024-02-28 12:43:56 -08:00
"lint": "npm run lint:eslint && npm run lint:markdown",
2024-02-20 11:28:19 -08:00
"package": "ncc build src/index.ts --license licenses.txt",
"package:watch": "npm run package -- --watch",
"test": "jest",
2024-02-26 14:52:10 -08:00
"all": "npm run format:write && npm run lint && npm run test && npm run package"
2024-02-20 11:28:19 -08:00
},
"license": "MIT",
"jest": {
"preset": "ts-jest",
"verbose": true,
"clearMocks": true,
"testEnvironment": "node",
"moduleFileExtensions": [
"js",
"ts"
],
2024-02-28 17:22:13 -08:00
"setupFilesAfterEnv": [
"./jest.setup.js"
],
2024-02-20 11:28:19 -08:00
"testMatch": [
"**/*.test.ts"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/dist/"
],
"transform": {
"^.+\\.ts$": "ts-jest"
},
"coverageReporters": [
"json-summary",
"text",
"lcov"
],
"collectCoverage": true,
"collectCoverageFrom": [
"./src/**"
]
},
"dependencies": {
"@actions/core": "^1.11.1"
2024-02-20 11:28:19 -08:00
},
"devDependencies": {
"@actions/attest": "^1.6.0",
"@eslint/js": "^9.34.0",
2025-06-17 09:51:48 -07:00
"@types/jest": "^30.0.0",
"@types/node": "^24.3.0",
"@vercel/ncc": "^0.38.3",
"eslint": "^9.34.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jest": "^29.0.1",
"jest": "^30.1.1",
"markdownlint-cli": "^0.45.0",
"prettier": "^3.6.2",
"ts-jest": "^29.4.1",
"typescript": "^5.9.2",
"typescript-eslint": "^8.41.0"
2024-02-23 15:08:41 -08:00
}
2024-02-20 11:28:19 -08:00
}