mirror of
https://github.com/slsa-framework/slsa-verifier.git
synced 2026-05-06 08:37:00 +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.1",
|
|
"@types/node": "18.15.2",
|
|
"@vercel/ncc": "0.36.1",
|
|
"eslint": "8.36.0",
|
|
"eslint-plugin-github": "4.6.1",
|
|
"jasmine": "4.5.0",
|
|
"prettier": "2.8.4",
|
|
"typescript": "4.9.5"
|
|
}
|
|
}
|