action-gh-release/package.json

37 lines
798 B
JSON
Raw Normal View History

2019-09-09 11:10:07 +03:00
{
"name": "action-gh-release",
"version": "0.1.1",
2019-09-09 11:10:07 +03:00
"private": true,
"description": "GitHub Action for creating GitHub Releases",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/softprops/action-gh-template.git"
},
"keywords": [
"actions"
],
"author": "softprops",
"license": "MIT",
"dependencies": {
2019-09-09 12:24:28 +03:00
"@actions/core": "^1.1.0",
"@actions/github": "^1.1.0",
2019-09-09 11:10:07 +03:00
"glob": "^7.1.4",
"mime": "^2.4.4"
},
"devDependencies": {
"@types/glob": "^7.1.1",
"@types/jest": "^24.0.13",
"@types/mime": "^2.0.1",
2019-09-09 14:16:58 +03:00
"@types/node": "^12.7.4",
2019-09-09 11:10:07 +03:00
"jest": "^24.8.0",
"jest-circus": "^24.7.1",
"ts-jest": "^24.0.2",
"typescript": "^3.5.1"
}
}