2019-08-13 12:11:30 +02:00
|
|
|
{
|
|
|
|
"name": "flutter-action",
|
2020-05-09 06:03:06 +02:00
|
|
|
"version": "1.3.2",
|
2019-08-13 12:11:30 +02:00
|
|
|
"private": true,
|
2019-08-16 04:16:46 +02:00
|
|
|
"description": "Flutter environment for use in actions",
|
2019-08-13 12:11:30 +02:00
|
|
|
"main": "lib/index.js",
|
|
|
|
"scripts": {
|
2020-03-04 15:57:20 +01:00
|
|
|
"build-tsc": "tsc",
|
|
|
|
"build-ncc": "ncc build",
|
|
|
|
"build": "run-s build-tsc build-ncc",
|
2019-08-13 12:11:30 +02:00
|
|
|
"format": "prettier --write **/*.ts",
|
|
|
|
"format-check": "prettier --check **/*.ts",
|
|
|
|
"test": "jest"
|
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+https://github.com/subosito/flutter-action.git"
|
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"actions",
|
|
|
|
"node",
|
|
|
|
"flutter",
|
|
|
|
"setup"
|
|
|
|
],
|
|
|
|
"author": "Alif Rachmawadi <arch@subosito.com>",
|
|
|
|
"license": "MIT",
|
|
|
|
"dependencies": {
|
2020-05-09 05:36:22 +02:00
|
|
|
"@actions/core": "^1.2.4",
|
|
|
|
"@actions/exec": "^1.0.4",
|
2020-04-29 20:01:31 +02:00
|
|
|
"@actions/http-client": "^1.0.8",
|
2020-03-04 15:57:20 +01:00
|
|
|
"@actions/io": "^1.0.2",
|
2020-05-09 05:36:22 +02:00
|
|
|
"@actions/tool-cache": "^1.3.4",
|
|
|
|
"semver": "^7.3.2",
|
2020-04-14 04:19:33 +02:00
|
|
|
"uuid": "^7.0.3"
|
2019-08-13 12:11:30 +02:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2020-04-14 04:19:33 +02:00
|
|
|
"@types/jest": "^25.2.1",
|
2020-05-09 05:36:22 +02:00
|
|
|
"@types/node": "^12.12.38",
|
2020-03-04 15:57:20 +01:00
|
|
|
"@types/semver": "^7.1.0",
|
2020-05-09 05:36:22 +02:00
|
|
|
"@types/uuid": "^7.0.3",
|
2020-04-14 04:19:33 +02:00
|
|
|
"@zeit/ncc": "^0.22.1",
|
2020-05-09 05:36:22 +02:00
|
|
|
"jest": "^25.5.4",
|
|
|
|
"jest-circus": "^25.5.4",
|
2020-04-14 04:19:33 +02:00
|
|
|
"nock": "^12.0.3",
|
2020-03-04 15:57:20 +01:00
|
|
|
"npm-run-all": "^4.1.5",
|
2020-04-14 04:31:17 +02:00
|
|
|
"prettier": "^1.19.1",
|
2020-05-09 05:36:22 +02:00
|
|
|
"ts-jest": "^25.5.0",
|
2020-03-04 15:57:20 +01:00
|
|
|
"typescript": "^3.8.3"
|
2020-03-17 03:38:25 +01:00
|
|
|
},
|
|
|
|
"resolutions": {
|
|
|
|
"minimist": "^1.2.2"
|
2019-08-13 12:11:30 +02:00
|
|
|
}
|
|
|
|
}
|