action-gh-release/package.json

41 lines
971 B
JSON
Raw Normal View History

2019-09-09 08:10:07 +00:00
{
"name": "action-gh-release",
2019-10-20 22:15:51 +00:00
"version": "0.1.4",
2019-09-09 08:10:07 +00:00
"private": true,
"description": "GitHub Action for creating GitHub Releases",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
2019-09-09 12:20:59 +00:00
"test": "jest",
"fmt": "prettier --write 'src/**/*.ts' '__tests__/**/*.ts'"
2019-09-09 08:10:07 +00:00
},
"repository": {
"type": "git",
"url": "git+https://github.com/softprops/action-gh-template.git"
},
"keywords": [
"actions"
],
"author": "softprops",
"license": "MIT",
"dependencies": {
2019-09-09 09:24:28 +00:00
"@actions/core": "^1.1.0",
"@actions/github": "^1.1.0",
2019-10-03 00:51:12 +00:00
"@octokit/plugin-throttling": "^2.6.0",
2019-09-09 08:10:07 +00:00
"glob": "^7.1.4",
"mime": "^2.4.4"
},
"devDependencies": {
"@types/glob": "^7.1.1",
2019-09-29 06:04:47 +00:00
"@types/jest": "^24.0.18",
2019-09-09 08:10:07 +00:00
"@types/mime": "^2.0.1",
2019-09-09 11:16:58 +00:00
"@types/node": "^12.7.4",
2019-09-29 06:04:47 +00:00
"jest": "^24.9.0",
"jest-circus": "^24.9.0",
2019-09-09 12:20:59 +00:00
"prettier": "1.18.2",
2019-09-29 06:04:47 +00:00
"ts-jest": "^24.1.0",
"typescript": "^3.6.3",
2019-09-09 12:20:59 +00:00
"typescript-formatter": "^7.2.2"
2019-09-09 08:10:07 +00:00
}
}