2019-08-13 17:11:30 +07:00
|
|
|
{
|
|
|
|
|
"name": "flutter-action",
|
2020-05-09 11:03:06 +07:00
|
|
|
"version": "1.3.2",
|
2019-08-13 17:11:30 +07:00
|
|
|
"private": true,
|
2019-08-16 09:16:46 +07:00
|
|
|
"description": "Flutter environment for use in actions",
|
2019-08-13 17:11:30 +07:00
|
|
|
"main": "lib/index.js",
|
|
|
|
|
"scripts": {
|
2020-03-04 14:57:20 +00:00
|
|
|
"build-tsc": "tsc",
|
|
|
|
|
"build-ncc": "ncc build",
|
|
|
|
|
"build": "run-s build-tsc build-ncc",
|
2019-08-13 17:11:30 +07: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": {
|
2021-04-26 14:30:05 +00:00
|
|
|
"@actions/core": "^1.2.7",
|
2020-05-09 10:36:22 +07:00
|
|
|
"@actions/exec": "^1.0.4",
|
2021-04-26 14:30:05 +00:00
|
|
|
"@actions/http-client": "^1.0.11",
|
|
|
|
|
"@actions/io": "^1.1.0",
|
|
|
|
|
"@actions/tool-cache": "^1.6.1",
|
|
|
|
|
"semver": "^7.3.5",
|
|
|
|
|
"uuid": "^8.3.2"
|
2019-08-13 17:11:30 +07:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2021-04-26 14:30:05 +00:00
|
|
|
"@types/jest": "^26.0.23",
|
|
|
|
|
"@types/node": "^14.14.41",
|
|
|
|
|
"@types/semver": "^7.3.5",
|
2020-10-08 01:20:47 +00:00
|
|
|
"@types/uuid": "^8.3.0",
|
2021-04-26 14:30:05 +00:00
|
|
|
"@vercel/ncc": "^0.28.3",
|
|
|
|
|
"jest": "^26.6.3",
|
|
|
|
|
"jest-circus": "^26.6.3",
|
|
|
|
|
"nock": "^13.0.11",
|
2020-03-04 14:57:20 +00:00
|
|
|
"npm-run-all": "^4.1.5",
|
2021-04-26 14:30:05 +00:00
|
|
|
"prettier": "2.2.1",
|
|
|
|
|
"ts-jest": "^26.5.5",
|
|
|
|
|
"typescript": "^4.2.4"
|
2020-03-17 09:38:25 +07:00
|
|
|
},
|
|
|
|
|
"resolutions": {
|
|
|
|
|
"minimist": "^1.2.2"
|
2019-08-13 17:11:30 +07:00
|
|
|
}
|
|
|
|
|
}
|