2024-02-20 11:26:39 -08:00
|
|
|
{
|
2024-03-29 08:47:10 -07:00
|
|
|
"name": "actions/attest-build-provenance",
|
|
|
|
|
"description": "Generate signed build provenance attestations",
|
2025-08-26 20:53:13 -07:00
|
|
|
"version": "2.0.0",
|
2024-02-20 11:26:39 -08:00
|
|
|
"author": "",
|
|
|
|
|
"private": true,
|
2024-03-29 08:47:10 -07:00
|
|
|
"homepage": "https://github.com/actions/attest-build-provenance",
|
2024-02-20 11:26:39 -08:00
|
|
|
"repository": {
|
|
|
|
|
"type": "git",
|
2024-03-29 08:47:10 -07:00
|
|
|
"url": "git+https://github.com/actions/attest-build-provenance.git"
|
2024-02-20 11:26:39 -08:00
|
|
|
},
|
|
|
|
|
"bugs": {
|
2024-03-29 08:47:10 -07:00
|
|
|
"url": "https://github.com/actions/attest-build-provenance/issues"
|
2024-02-20 11:26:39 -08:00
|
|
|
},
|
|
|
|
|
"keywords": [
|
|
|
|
|
"actions",
|
2024-03-29 08:47:10 -07:00
|
|
|
"attestation",
|
|
|
|
|
"provenance"
|
2024-02-20 11:26:39 -08:00
|
|
|
],
|
|
|
|
|
"exports": {
|
|
|
|
|
".": "./dist/index.js"
|
|
|
|
|
},
|
|
|
|
|
"engines": {
|
2025-08-26 20:53:13 -07:00
|
|
|
"node": ">=24"
|
2024-02-20 11:26:39 -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:57:28 -07:00
|
|
|
"lint:eslint": "npx eslint",
|
|
|
|
|
"lint:markdown": "npx markdownlint --config .markdown-lint.yml \"*.md\"",
|
2024-03-14 09:42:48 -07:00
|
|
|
"lint": "npm run lint:eslint && npm run lint:markdown",
|
2024-02-20 11:26:39 -08:00
|
|
|
"package": "ncc build src/index.ts --license licenses.txt",
|
|
|
|
|
"package:watch": "npm run package -- --watch",
|
|
|
|
|
"test": "jest",
|
2024-02-26 14:52:26 -08:00
|
|
|
"all": "npm run format:write && npm run lint && npm run test && npm run package"
|
2024-02-20 11:26:39 -08:00
|
|
|
},
|
|
|
|
|
"license": "MIT",
|
|
|
|
|
"jest": {
|
|
|
|
|
"preset": "ts-jest",
|
|
|
|
|
"verbose": true,
|
|
|
|
|
"clearMocks": true,
|
|
|
|
|
"testEnvironment": "node",
|
|
|
|
|
"moduleFileExtensions": [
|
|
|
|
|
"js",
|
|
|
|
|
"ts"
|
|
|
|
|
],
|
2024-02-29 17:04:03 -08:00
|
|
|
"setupFilesAfterEnv": [
|
|
|
|
|
"./jest.setup.js"
|
|
|
|
|
],
|
2024-02-20 11:26:39 -08:00
|
|
|
"testMatch": [
|
|
|
|
|
"**/*.test.ts"
|
|
|
|
|
],
|
|
|
|
|
"testPathIgnorePatterns": [
|
|
|
|
|
"/node_modules/",
|
|
|
|
|
"/dist/"
|
|
|
|
|
],
|
|
|
|
|
"transform": {
|
|
|
|
|
"^.+\\.ts$": "ts-jest"
|
|
|
|
|
},
|
|
|
|
|
"coverageReporters": [
|
|
|
|
|
"json-summary",
|
|
|
|
|
"text",
|
|
|
|
|
"lcov"
|
|
|
|
|
],
|
|
|
|
|
"collectCoverage": true,
|
|
|
|
|
"collectCoverageFrom": [
|
|
|
|
|
"./src/**"
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
"dependencies": {
|
2025-02-27 06:44:35 -08:00
|
|
|
"@actions/attest": "^1.6.0",
|
2024-10-07 10:06:27 -07:00
|
|
|
"@actions/core": "^1.11.1"
|
2024-02-20 11:26:39 -08:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2025-08-11 08:58:18 -07:00
|
|
|
"@eslint/js": "^9.33.0",
|
2025-06-17 09:51:53 -07:00
|
|
|
"@types/jest": "^30.0.0",
|
2025-08-11 08:58:18 -07:00
|
|
|
"@types/node": "^24.2.1",
|
2024-11-18 10:38:38 -05:00
|
|
|
"@vercel/ncc": "^0.38.3",
|
2025-08-11 08:58:18 -07:00
|
|
|
"eslint": "^9.33.0",
|
2025-06-23 09:55:54 -07:00
|
|
|
"eslint-plugin-import": "^2.32.0",
|
2025-06-23 10:14:21 -07:00
|
|
|
"eslint-plugin-jest": "^29.0.1",
|
2025-07-29 09:22:51 -07:00
|
|
|
"jest": "^30.0.5",
|
2024-10-29 07:20:24 -07:00
|
|
|
"jose": "^5.9.6",
|
2025-05-20 06:56:58 -07:00
|
|
|
"markdownlint-cli": "^0.45.0",
|
2025-08-11 08:58:18 -07:00
|
|
|
"nock": "^14.0.9",
|
2025-06-30 09:50:17 -07:00
|
|
|
"prettier": "^3.6.2",
|
2025-08-06 19:09:48 -04:00
|
|
|
"ts-jest": "^29.4.1",
|
|
|
|
|
"typescript": "^5.9.2",
|
|
|
|
|
"typescript-eslint": "^8.39.0"
|
2024-02-26 14:49:08 -08:00
|
|
|
}
|
2024-02-20 11:26:39 -08:00
|
|
|
}
|