mirror of
https://github.com/android-actions/setup-android
synced 2024-11-22 13:29:35 -08:00
f4de3ae372
Bumps [prettier](https://github.com/prettier/prettier) from 1.19.1 to 2.0.5. - [Release notes](https://github.com/prettier/prettier/releases) - [Changelog](https://github.com/prettier/prettier/blob/master/CHANGELOG.md) - [Commits](https://github.com/prettier/prettier/compare/1.19.1...2.0.5) Signed-off-by: dependabot[bot] <support@github.com>
49 lines
1.3 KiB
JSON
49 lines
1.3 KiB
JSON
{
|
|
"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/main --minify && ncc build src/post.ts --out dist/post --minify",
|
|
"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": "^1.0.2",
|
|
"@actions/core": "^1.2.0",
|
|
"@actions/tool-cache": "^1.6.0",
|
|
"axios": "^0.19.2",
|
|
"xml-js": "^1.6.11"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^26.0.9",
|
|
"@types/node": "^12.7.12",
|
|
"@typescript-eslint/parser": "^3.9.0",
|
|
"@zeit/ncc": "^0.20.5",
|
|
"eslint": "^6.8.0",
|
|
"eslint-plugin-github": "^4.1.1",
|
|
"eslint-plugin-jest": "^23.20.0",
|
|
"jest": "^24.9.0",
|
|
"jest-circus": "^26.3.0",
|
|
"js-yaml": "^3.13.1",
|
|
"prettier": "^2.0.5",
|
|
"ts-jest": "^24.2.0",
|
|
"typescript": "^3.9.7"
|
|
}
|
|
}
|