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-10-28 20:43:13 -07:00
|
|
|
"@actions/cache": "^1.0.3",
|
2020-10-01 10:43:57 -07:00
|
|
|
"@actions/core": "^1.2.6",
|
2020-08-26 08:51:32 -07:00
|
|
|
"@actions/tool-cache": "^1.6.0"
|
2020-07-14 08:41:00 -07:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2020-10-28 20:43:13 -07:00
|
|
|
"@types/jest": "^26.0.15",
|
|
|
|
"@types/node": "^14.14.6",
|
2020-11-06 07:52:22 -08:00
|
|
|
"@typescript-eslint/parser": "^4.6.1",
|
2020-08-11 11:09:11 -07:00
|
|
|
"@zeit/ncc": "^0.22.3",
|
2020-10-28 20:43:13 -07:00
|
|
|
"eslint": "^7.12.1",
|
2020-08-11 08:35:59 -07:00
|
|
|
"eslint-plugin-github": "^4.1.1",
|
2020-08-11 09:03:46 -07:00
|
|
|
"eslint-plugin-jest": "^23.20.0",
|
2020-07-14 08:41:00 -07:00
|
|
|
"jest": "^24.9.0",
|
2020-10-28 20:43:13 -07:00
|
|
|
"jest-circus": "^26.6.1",
|
2020-07-14 08:41:00 -07:00
|
|
|
"js-yaml": "^3.13.1",
|
2020-10-28 20:43:13 -07:00
|
|
|
"prettier": "^2.1.2",
|
2020-07-14 08:41:00 -07:00
|
|
|
"ts-jest": "^24.2.0",
|
2020-08-11 09:04:24 -07:00
|
|
|
"typescript": "^3.9.7"
|
2020-07-14 08:41:00 -07:00
|
|
|
}
|
2020-01-03 02:37:01 -08:00
|
|
|
}
|