{ "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/", "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": "^2.0.2", "@actions/core": "^1.3.0", "@actions/tool-cache": "^1.6.1", "fs-extra": "^10.0.0" }, "devDependencies": { "@types/fs-extra": "^9.0.11", "@types/jest": "^27.4.1", "@types/node": "^17.0.25", "@typescript-eslint/eslint-plugin": "^5.20.0", "@typescript-eslint/parser": "^5.20.0", "@vercel/ncc": "^0.33.4", "eslint": "^8.13.0", "eslint-plugin-github": "^4.3.6", "eslint-plugin-jest": "^26.1.4", "jest": "^27.5.1", "jest-circus": "^27.0.6", "js-yaml": "^4.1.0", "prettier": "^2.3.0", "ts-jest": "^27.1.4", "typescript": "^4.2.4" } }