mirror of
https://github.com/actions/create-release.git
synced 2025-06-14 04:47:44 +00:00
32 lines
664 B
JSON
32 lines
664 B
JSON
{
|
|
"name": "create-release",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"description": "Generate a release and upload build artifacts",
|
|
"main": "dist/index.js",
|
|
"scripts": {
|
|
"build": "ncc build src/main.js",
|
|
"test": "jest"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/actions/create-release"
|
|
},
|
|
"keywords": [
|
|
"actions",
|
|
"node"
|
|
],
|
|
"author": "GitHub",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@actions/core": "^1.0.0",
|
|
"@actions/exec": "^1.0.0",
|
|
"@actions/github": "^1.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^12.0.4",
|
|
"@zeit/ncc": "^0.20.4",
|
|
"typescript": "^3.5.1"
|
|
}
|
|
}
|