{ "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": "^3.0.5", "@actions/core": "^1.10.0", "@actions/tool-cache": "^2.0.1", "fs-extra": "^10.1.0" }, "devDependencies": { "@types/fs-extra": "^9.0.13", "@types/jest": "^29.2.0", "@types/node": "^16.11.66", "@typescript-eslint/eslint-plugin": "^5.40.1", "@typescript-eslint/parser": "^5.40.1", "@vercel/ncc": "^0.34.0", "eslint": "^8.25.0", "eslint-plugin-github": "^4.4.0", "eslint-plugin-jest": "^27.1.3", "jest": "^29.2.1", "jest-circus": "^29.2.1", "js-yaml": "^4.1.0", "prettier": "^2.7.1", "ts-jest": "^29.0.3", "typescript": "^4.8.4" } }