41 lines
946 B
JSON
41 lines
946 B
JSON
{
|
|
"name": "release-action",
|
|
"version": "1.1.0",
|
|
"private": true,
|
|
"description": "An action which manages a github release",
|
|
"main": "lib/main.js",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"clean": "rm -rf lib/*",
|
|
"debug": "yarn clean && yarn install && yarn build",
|
|
"release": "yarn clean && yarn install --production && yarn build",
|
|
"test": "jest"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/ncipollo/release-action.git"
|
|
},
|
|
"keywords": [
|
|
"actions",
|
|
"node",
|
|
"setup"
|
|
],
|
|
"author": "GitHub",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@actions/core": "^1.4.0",
|
|
"@actions/github": "^5.0.0",
|
|
"@types/glob": "^7.1.3",
|
|
"glob": "^7.1.7",
|
|
"untildify": "^4.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^26.0.23",
|
|
"@types/node": "^14.14.25",
|
|
"jest": "^26.6.3",
|
|
"jest-circus": "^26.6.3",
|
|
"ts-jest": "^26.5.6",
|
|
"typescript": "^4.3.4"
|
|
}
|
|
}
|