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

52 lines
1.2 KiB
JSON
Raw Normal View History

2019-08-13 12:11:30 +02:00
{
"name": "flutter-action",
2020-03-04 18:35:31 +01:00
"version": "1.2.0",
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-03-04 15:57:20 +01:00
"@actions/core": "^1.2.3",
"@actions/exec": "^1.0.3",
"@actions/http-client": "^1.0.6",
"@actions/io": "^1.0.2",
2020-03-17 03:06:14 +01:00
"@actions/tool-cache": "^1.3.3",
2020-03-04 15:57:20 +01:00
"semver": "^7.1.3",
2020-03-17 03:06:14 +01:00
"uuid": "^7.0.2"
2019-08-13 12:11:30 +02:00
},
"devDependencies": {
2020-03-17 03:06:14 +01:00
"@types/jest": "^25.1.4",
2019-08-16 13:30:30 +02:00
"@types/nock": "^10.0.3",
2020-03-17 03:06:14 +01:00
"@types/node": "^12.12.30",
2020-03-04 15:57:20 +01:00
"@types/semver": "^7.1.0",
"@types/uuid": "^7.0.0",
"@zeit/ncc": "^0.21.1",
"jest": "^25.1.0",
"jest-circus": "^25.1.0",
2019-08-16 13:30:30 +02:00
"nock": "^10.0.6",
2020-03-04 15:57:20 +01:00
"npm-run-all": "^4.1.5",
"prettier": "^1.19.1",
"ts-jest": "^25.2.1",
"typescript": "^3.8.3"
2019-08-13 12:11:30 +02:00
}
}