mirror of
https://github.com/slsa-framework/slsa-verifier.git
synced 2026-05-09 10:06:37 +00:00
36 lines
985 B
JSON
36 lines
985 B
JSON
{
|
|
"name": "setup-slsa-verifier",
|
|
"version": "0.0.1",
|
|
"description": "",
|
|
"main": "lib/index.js",
|
|
"scripts": {
|
|
"compile": "tsc",
|
|
"format": "prettier --write '**/*.ts'",
|
|
"format-check": "prettier --check '**/*.ts'",
|
|
"test": "jasmine",
|
|
"package": "ncc build --source-map",
|
|
"lint": "eslint src/**/*.ts",
|
|
"build": "npm run compile && npm run package",
|
|
"start": "node lib/index.js",
|
|
"all": "npm run compile && npm run format && npm run lint && npm run test && npm run package"
|
|
},
|
|
"dependencies": {
|
|
"@actions/core": "^1.9.1",
|
|
"@actions/exec": "^1.1.1",
|
|
"@actions/github": "^5.0.3",
|
|
"@actions/io": "^1.1.2",
|
|
"@actions/tool-cache": "^2.0.1",
|
|
"nodejs": "^0.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jasmine": "4.3.0",
|
|
"@types/node": "18.11.8",
|
|
"@vercel/ncc": "0.34.0",
|
|
"eslint": "8.26.0",
|
|
"eslint-plugin-github": "4.4.0",
|
|
"jasmine": "4.5.0",
|
|
"prettier": "2.7.1",
|
|
"typescript": "4.8.4"
|
|
}
|
|
}
|