2020-01-03 02:37:01 -08:00
|
|
|
{
|
2020-07-14 08:41:00 -07:00
|
|
|
"name": "setup-android",
|
2020-01-03 02:37:01 -08:00
|
|
|
"version": "1.0.0",
|
2020-07-14 08:41:00 -07:00
|
|
|
"private": true,
|
|
|
|
"description": "setup android action",
|
|
|
|
"main": "lib/main.js",
|
2020-01-03 02:37:01 -08:00
|
|
|
"scripts": {
|
2021-03-02 15:07:35 -08:00
|
|
|
"build": "ncc build src/main.ts --out dist/",
|
2020-07-14 08:41:00 -07:00
|
|
|
"format": "prettier --write **/*.ts",
|
|
|
|
"format-check": "prettier --check **/*.ts",
|
2020-08-26 08:51:32 -07:00
|
|
|
"lint": "eslint src/*.ts",
|
2020-07-14 08:41:00 -07:00
|
|
|
"test": "jest",
|
2020-07-25 09:07:39 -07:00
|
|
|
"all": "npm run format && npm run lint && npm run build && npm test"
|
2020-01-03 02:37:01 -08:00
|
|
|
},
|
2020-07-14 08:41:00 -07:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+https://github.com/daveol/setup-android.git"
|
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"actions",
|
|
|
|
"node",
|
|
|
|
"setup",
|
|
|
|
"android"
|
|
|
|
],
|
|
|
|
"author": "daveol",
|
|
|
|
"license": "ISC",
|
|
|
|
"dependencies": {
|
2022-08-03 06:09:19 -07:00
|
|
|
"@actions/cache": "^3.0.0",
|
2021-05-23 22:32:53 -07:00
|
|
|
"@actions/core": "^1.3.0",
|
2022-08-03 06:09:19 -07:00
|
|
|
"@actions/tool-cache": "^2.0.1",
|
2021-07-17 09:15:17 -07:00
|
|
|
"fs-extra": "^10.0.0"
|
2020-07-14 08:41:00 -07:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2021-05-25 02:54:58 -07:00
|
|
|
"@types/fs-extra": "^9.0.11",
|
2022-08-03 06:09:19 -07:00
|
|
|
"@types/jest": "^28.1.6",
|
2022-08-03 06:14:58 -07:00
|
|
|
"@types/node": "^16.11.47",
|
2022-04-21 20:18:23 -07:00
|
|
|
"@typescript-eslint/eslint-plugin": "^5.20.0",
|
|
|
|
"@typescript-eslint/parser": "^5.20.0",
|
2022-08-03 06:09:19 -07:00
|
|
|
"@vercel/ncc": "^0.34.0",
|
2022-04-21 20:18:23 -07:00
|
|
|
"eslint": "^8.13.0",
|
|
|
|
"eslint-plugin-github": "^4.3.6",
|
|
|
|
"eslint-plugin-jest": "^26.1.4",
|
2022-08-03 06:09:19 -07:00
|
|
|
"jest": "^28.1.3",
|
|
|
|
"jest-circus": "^28.1.3",
|
2021-05-25 02:54:58 -07:00
|
|
|
"js-yaml": "^4.1.0",
|
|
|
|
"prettier": "^2.3.0",
|
2022-08-03 06:09:19 -07:00
|
|
|
"ts-jest": "^28.0.7",
|
2021-04-11 22:39:32 -07:00
|
|
|
"typescript": "^4.2.4"
|
2020-07-14 08:41:00 -07:00
|
|
|
}
|
2020-01-03 02:37:01 -08:00
|
|
|
}
|