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": {
|
2020-08-26 08:51:32 -07:00
|
|
|
"build": "ncc build src/main.ts --out dist/ --minify",
|
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": {
|
2020-12-13 22:06:04 -08:00
|
|
|
"@actions/cache": "^1.0.5",
|
2020-10-01 10:43:57 -07:00
|
|
|
"@actions/core": "^1.2.6",
|
2020-12-31 11:04:54 -08:00
|
|
|
"@actions/tool-cache": "^1.6.1"
|
2020-07-14 08:41:00 -07:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2020-12-31 11:04:54 -08:00
|
|
|
"@types/jest": "^26.0.19",
|
2021-01-24 21:49:08 -08:00
|
|
|
"@types/node": "^14.14.22",
|
2020-12-31 11:04:54 -08:00
|
|
|
"@typescript-eslint/parser": "^4.11.1",
|
2020-08-11 11:09:11 -07:00
|
|
|
"@zeit/ncc": "^0.22.3",
|
2020-12-20 21:58:41 -08:00
|
|
|
"eslint": "^7.16.0",
|
2020-08-11 08:35:59 -07:00
|
|
|
"eslint-plugin-github": "^4.1.1",
|
2020-11-15 21:57:28 -08:00
|
|
|
"eslint-plugin-jest": "^24.1.3",
|
2020-07-14 08:41:00 -07:00
|
|
|
"jest": "^24.9.0",
|
2020-11-06 07:52:22 -08:00
|
|
|
"jest-circus": "^26.6.3",
|
2020-12-31 11:04:54 -08:00
|
|
|
"js-yaml": "^3.14.1",
|
|
|
|
"prettier": "^2.2.1",
|
2020-07-14 08:41:00 -07:00
|
|
|
"ts-jest": "^24.2.0",
|
2020-12-31 11:04:54 -08:00
|
|
|
"typescript": "^4.1.3"
|
2020-07-14 08:41:00 -07:00
|
|
|
}
|
2020-01-03 02:37:01 -08:00
|
|
|
}
|