gradle-build-action/package.json

41 lines
914 B
JSON
Raw Normal View History

2019-09-20 17:06:59 -04:00
{
2019-09-21 10:01:53 -04:00
"name": "gradle-command-action",
2019-09-21 10:09:41 -04:00
"version": "1.0.0",
2019-09-21 10:01:53 -04:00
"description": "Execute Gradle Command Line",
2019-09-20 17:06:59 -04:00
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"test": "jest"
},
"repository": {
"type": "git",
2019-09-21 10:09:41 -04:00
"url": "git+https://github.com/eskatos/gradle-command-action.git"
2019-09-20 17:06:59 -04:00
},
"keywords": [
2019-09-21 10:09:41 -04:00
"github",
2019-09-20 17:06:59 -04:00
"actions",
2019-09-21 10:09:41 -04:00
"github-actions",
"gradle"
2019-09-20 17:06:59 -04:00
],
2019-09-21 10:09:41 -04:00
"author": "Paul Merlin <paul@nosphere.org>",
2019-09-20 17:06:59 -04:00
"license": "MIT",
"dependencies": {
2019-09-21 10:01:53 -04:00
"@actions/core": "1.1.1",
"@actions/exec": "1.0.1",
"@actions/io": "1.0.1",
"@actions/tool-cache": "1.1.1",
"string-argv": "0.3.1",
"typed-rest-client": "1.5.0",
"unzipper": "0.10.5"
2019-09-20 17:06:59 -04:00
},
"devDependencies": {
2019-09-21 10:01:53 -04:00
"@types/jest": "24.0.18",
"@types/node": "12.7.5",
"@types/unzipper": "0.10.0",
"jest": "24.9.0",
"jest-circus": "24.9.0",
"ts-jest": "24.1.0",
"typescript": "3.6.3"
2019-09-20 17:06:59 -04:00
}
}