Files
flutter-action/package.json

54 lines
1.3 KiB
JSON
Raw Normal View History

2019-08-13 17:11:30 +07:00
{
"name": "flutter-action",
2020-04-30 09:48:20 +07:00
"version": "1.3.1",
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": {
2020-03-04 14:57:20 +00:00
"@actions/core": "^1.2.3",
"@actions/exec": "^1.0.3",
"@actions/http-client": "^1.0.8",
2020-03-04 14:57:20 +00:00
"@actions/io": "^1.0.2",
2020-03-17 09:06:14 +07:00
"@actions/tool-cache": "^1.3.3",
2020-04-14 02:19:33 +00:00
"semver": "^7.3.0",
"uuid": "^7.0.3"
2019-08-13 17:11:30 +07:00
},
"devDependencies": {
2020-04-14 02:19:33 +00:00
"@types/jest": "^25.2.1",
"@types/node": "^12.12.35",
2020-03-04 14:57:20 +00:00
"@types/semver": "^7.1.0",
2020-04-14 02:19:33 +00:00
"@types/uuid": "^7.0.2",
"@zeit/ncc": "^0.22.1",
"jest": "^25.3.0",
"jest-circus": "^25.3.0",
"nock": "^12.0.3",
2020-03-04 14:57:20 +00:00
"npm-run-all": "^4.1.5",
2020-04-14 02:31:17 +00:00
"prettier": "^1.19.1",
2020-04-14 02:19:33 +00:00
"ts-jest": "^25.3.1",
2020-03-04 14:57:20 +00:00
"typescript": "^3.8.3"
2020-03-17 09:38:25 +07:00
},
"resolutions": {
"minimist": "^1.2.2"
2019-08-13 17:11:30 +07:00
}
}