2024-02-20 11:22:22 -08:00
|
|
|
{
|
2024-03-28 12:59:50 -07:00
|
|
|
"name": "actions/attest",
|
|
|
|
|
"description": "Generate signed attestations for workflow artifacts",
|
2026-01-26 08:59:13 -08:00
|
|
|
"version": "3.2.0",
|
2024-02-20 11:22:22 -08:00
|
|
|
"author": "",
|
|
|
|
|
"private": true,
|
2024-03-28 12:59:50 -07:00
|
|
|
"homepage": "https://github.com/actions/attest",
|
2024-02-20 11:22:22 -08:00
|
|
|
"repository": {
|
|
|
|
|
"type": "git",
|
2024-03-28 12:59:50 -07:00
|
|
|
"url": "git+https://github.com/actions/attest.git"
|
2024-02-20 11:22:22 -08:00
|
|
|
},
|
|
|
|
|
"bugs": {
|
2024-03-28 12:59:50 -07:00
|
|
|
"url": "https://github.com/actions/attest/issues"
|
2024-02-20 11:22:22 -08:00
|
|
|
},
|
|
|
|
|
"keywords": [
|
|
|
|
|
"actions",
|
2024-03-28 12:59:50 -07:00
|
|
|
"attestation"
|
2024-02-20 11:22:22 -08:00
|
|
|
],
|
|
|
|
|
"exports": {
|
|
|
|
|
".": "./dist/index.js"
|
|
|
|
|
},
|
|
|
|
|
"engines": {
|
2025-08-26 16:06:47 -07:00
|
|
|
"node": ">=24"
|
2024-02-20 11:22:22 -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-26 16:05:21 -07:00
|
|
|
"lint:eslint": "npx eslint",
|
|
|
|
|
"lint:markdown": "npx markdownlint --config .markdown-lint.yml \"*.md\"",
|
2024-02-28 09:35:04 -08:00
|
|
|
"lint": "npm run lint:eslint && npm run lint:markdown",
|
2024-02-20 11:22:22 -08:00
|
|
|
"package": "ncc build src/index.ts --license licenses.txt",
|
|
|
|
|
"package:watch": "npm run package -- --watch",
|
|
|
|
|
"test": "jest",
|
2024-02-26 14:52:14 -08:00
|
|
|
"all": "npm run format:write && npm run lint && npm run test && npm run package"
|
2024-02-20 11:22:22 -08:00
|
|
|
},
|
|
|
|
|
"license": "MIT",
|
|
|
|
|
"jest": {
|
|
|
|
|
"preset": "ts-jest",
|
2024-02-28 10:45:31 -08:00
|
|
|
"setupFilesAfterEnv": [
|
|
|
|
|
"./jest.setup.js"
|
|
|
|
|
],
|
2024-02-20 11:22:22 -08:00
|
|
|
"verbose": true,
|
|
|
|
|
"clearMocks": true,
|
|
|
|
|
"testEnvironment": "node",
|
|
|
|
|
"moduleFileExtensions": [
|
|
|
|
|
"js",
|
|
|
|
|
"ts"
|
|
|
|
|
],
|
|
|
|
|
"testMatch": [
|
|
|
|
|
"**/*.test.ts"
|
|
|
|
|
],
|
|
|
|
|
"testPathIgnorePatterns": [
|
|
|
|
|
"/node_modules/",
|
|
|
|
|
"/dist/"
|
|
|
|
|
],
|
|
|
|
|
"transform": {
|
|
|
|
|
"^.+\\.ts$": "ts-jest"
|
|
|
|
|
},
|
|
|
|
|
"coverageReporters": [
|
|
|
|
|
"json-summary",
|
|
|
|
|
"text",
|
|
|
|
|
"lcov"
|
|
|
|
|
],
|
|
|
|
|
"collectCoverage": true,
|
|
|
|
|
"collectCoverageFrom": [
|
|
|
|
|
"./src/**"
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
"dependencies": {
|
2025-12-18 11:30:45 -08:00
|
|
|
"@actions/attest": "^2.1.0",
|
2025-12-15 16:39:30 -08:00
|
|
|
"@actions/core": "^2.0.1",
|
2025-05-20 06:55:33 -07:00
|
|
|
"@actions/github": "^6.0.1",
|
2024-08-20 13:10:31 -05:00
|
|
|
"@actions/glob": "^0.5.0",
|
2025-08-05 14:10:37 -04:00
|
|
|
"@sigstore/oci": "^0.6.0",
|
2024-11-27 13:59:01 -08:00
|
|
|
"csv-parse": "^5.6.0"
|
2024-02-20 11:22:22 -08:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2025-12-15 16:27:15 -08:00
|
|
|
"@eslint/js": "^9.39.2",
|
2025-08-05 09:09:33 -07:00
|
|
|
"@sigstore/mock": "^0.11.0",
|
2025-06-17 09:51:59 -07:00
|
|
|
"@types/jest": "^30.0.0",
|
2024-02-26 14:46:15 -08:00
|
|
|
"@types/make-fetch-happen": "^10.0.4",
|
2026-01-02 05:03:48 -08:00
|
|
|
"@types/node": "^25.0.3",
|
2025-09-29 14:15:27 -04:00
|
|
|
"@vercel/ncc": "^0.38.4",
|
2025-12-15 16:27:15 -08:00
|
|
|
"eslint": "^9.39.2",
|
2025-06-24 09:41:11 -07:00
|
|
|
"eslint-plugin-import": "^2.32.0",
|
2026-01-02 05:03:48 -08:00
|
|
|
"eslint-plugin-jest": "^29.9.0",
|
2025-10-06 10:04:14 -07:00
|
|
|
"jest": "^30.2.0",
|
2025-11-17 10:13:47 -08:00
|
|
|
"js-yaml": "^4.1.1",
|
2025-12-15 16:27:15 -08:00
|
|
|
"markdownlint-cli": "^0.47.0",
|
2024-11-18 10:39:14 -05:00
|
|
|
"nock": "^13.5.6",
|
2025-12-15 08:42:03 -08:00
|
|
|
"prettier": "^3.7.4",
|
2025-12-01 19:16:19 -08:00
|
|
|
"ts-jest": "^29.4.6",
|
2025-10-07 06:41:54 -07:00
|
|
|
"typescript": "^5.9.3",
|
2026-01-02 05:03:48 -08:00
|
|
|
"typescript-eslint": "^8.50.1",
|
2026-01-20 16:21:19 -08:00
|
|
|
"undici": "^7.18.2"
|
2024-02-26 14:46:15 -08:00
|
|
|
}
|
2024-02-20 11:22:22 -08:00
|
|
|
}
|