Files

71 lines
2.1 KiB
JSON
Raw Permalink Normal View History

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",
2026-02-05 11:08:57 -08:00
"type": "module",
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",
2026-02-05 13:07:47 -08:00
"ci-test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
2024-02-20 11:22:22 -08:00
"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",
2026-02-05 13:07:47 -08:00
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
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",
"dependencies": {
"@actions/attest": "^2.2.1",
"@actions/core": "^2.0.2",
"@actions/github": "^7.0.0",
"@actions/glob": "^0.5.0",
"@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": {
"@eslint/js": "^9.39.2",
2026-02-05 13:07:47 -08:00
"@jest/globals": "^30.2.0",
"@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",
"@types/node": "^25.2.0",
"@vercel/ncc": "^0.38.4",
"eslint": "^9.39.2",
2026-02-05 13:07:47 -08:00
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jest": "^29.12.1",
"jest": "^30.2.0",
2025-11-17 10:13:47 -08:00
"js-yaml": "^4.1.1",
"markdownlint-cli": "^0.47.0",
"nock": "^13.5.6",
"prettier": "^3.8.1",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3",
"typescript-eslint": "^8.54.0",
"undici": "^7.20.0"
2024-02-26 14:46:15 -08:00
}
2024-02-20 11:22:22 -08:00
}