1
0
Fork 0
mirror of https://github.com/subosito/flutter-action.git synced 2024-08-16 10:19:50 +02:00
flutter/package.json
2020-10-08 01:26:57 +00:00

53 lines
1.3 KiB
JSON

{
"name": "flutter-action",
"version": "1.3.2",
"private": true,
"description": "Flutter environment for use in actions",
"main": "lib/index.js",
"scripts": {
"build-tsc": "tsc",
"build-ncc": "ncc build",
"build": "run-s build-tsc build-ncc",
"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": {
"@actions/core": "^1.2.6",
"@actions/exec": "^1.0.4",
"@actions/http-client": "^1.0.8",
"@actions/io": "^1.0.2",
"@actions/tool-cache": "^1.6.0",
"semver": "^7.3.2",
"uuid": "^8.3.1"
},
"devDependencies": {
"@types/jest": "^26.0.14",
"@types/node": "^14.11.5",
"@types/semver": "^7.3.4",
"@types/uuid": "^8.3.0",
"@vercel/ncc": "^0.24.1",
"jest": "^26.5.2",
"jest-circus": "^26.5.2",
"nock": "^13.0.4",
"npm-run-all": "^4.1.5",
"prettier": "1.19.1",
"ts-jest": "^26.4.1",
"typescript": "^4.0.3"
},
"resolutions": {
"minimist": "^1.2.2"
}
}