mirror of
https://github.com/android-actions/setup-android
synced 2024-11-22 13:29:35 -08:00
910b2809b6
Bumps [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) from 4.15.2 to 4.16.1. - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v4.16.1/packages/eslint-plugin) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
50 lines
1.3 KiB
JSON
50 lines
1.3 KiB
JSON
{
|
|
"name": "setup-android",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"description": "setup android action",
|
|
"main": "lib/main.js",
|
|
"scripts": {
|
|
"build": "ncc build src/main.ts --out dist/ --minify",
|
|
"format": "prettier --write **/*.ts",
|
|
"format-check": "prettier --check **/*.ts",
|
|
"lint": "eslint src/*.ts",
|
|
"test": "jest",
|
|
"all": "npm run format && npm run lint && npm run build && npm test"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/daveol/setup-android.git"
|
|
},
|
|
"keywords": [
|
|
"actions",
|
|
"node",
|
|
"setup",
|
|
"android"
|
|
],
|
|
"author": "daveol",
|
|
"license": "ISC",
|
|
"dependencies": {
|
|
"@actions/cache": "^1.0.6",
|
|
"@actions/core": "^1.2.6",
|
|
"@actions/tool-cache": "^1.6.1",
|
|
"fs-extra": "^9.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^26.0.20",
|
|
"@types/node": "^14.14.31",
|
|
"@typescript-eslint/eslint-plugin": "^4.16.1",
|
|
"@typescript-eslint/parser": "^4.16.1",
|
|
"@types/fs-extra": "^9.0.8",
|
|
"@zeit/ncc": "^0.22.3",
|
|
"eslint": "^7.21.0",
|
|
"eslint-plugin-github": "^4.1.1",
|
|
"eslint-plugin-jest": "^24.1.5",
|
|
"jest": "^26.6.3",
|
|
"jest-circus": "^26.6.3",
|
|
"js-yaml": "^4.0.0",
|
|
"prettier": "^2.2.1",
|
|
"ts-jest": "^26.5.2",
|
|
"typescript": "^4.2.2"
|
|
}
|
|
}
|