setup-android/package.json
dependabot[bot] f2fe6d103b Bump eslint from 6.8.0 to 7.6.0
Bumps [eslint](https://github.com/eslint/eslint) from 6.8.0 to 7.6.0.
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/master/CHANGELOG.md)
- [Commits](https://github.com/eslint/eslint/compare/v6.8.0...v7.6.0)

Signed-off-by: dependabot[bot] <support@github.com>
2020-08-11 20:24:01 +02:00

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.22.3",
"eslint": "^7.6.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"
}
}