42 lines
961 B
JSON
42 lines
961 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.2.6",
|
|
"@actions/github": "^4.0.0",
|
|
"add": "^2.0.6",
|
|
"glob": "^7.1.4",
|
|
"global": "^4.4.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/glob": "^7.1.1",
|
|
"@types/jest": "^26.0.5",
|
|
"@types/node": "^12.0.4",
|
|
"jest": "^26.1.0",
|
|
"jest-circus": "^26.1.0",
|
|
"ts-jest": "^26.1.3",
|
|
"typescript": "^3.9.7"
|
|
}
|
|
}
|