-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
43 lines (43 loc) · 1.02 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "setup-android-tools",
"version": "1.0.0",
"private": true,
"description": "Set up Android tools in GitHub Actions workflow with cache",
"main": "lib/setup-android-tools.js",
"scripts": {
"build": "tsc && ncc build",
"test": "jest",
"lint": "npx eslint **/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maxim-lobanov/setup-android-tools.git"
},
"keywords": [
"actions",
"android",
"sdk",
"tools",
"setup"
],
"author": "Maxim Lobanov",
"license": "MIT",
"dependencies": {
"@actions/cache": "^1.0.2",
"@actions/core": "^1.2.6",
"@actions/exec": "^1.0.4"
},
"devDependencies": {
"@types/jest": "^26.0.14",
"@types/node": "^12.0.4",
"@typescript-eslint/eslint-plugin": "^4.4.0",
"@typescript-eslint/parser": "^4.4.0",
"@zeit/ncc": "^0.22.3",
"eslint": "7.11.0",
"eslint-plugin-jest": "^24.1.0",
"jest": "^26.5.2",
"jest-circus": "^26.5.2",
"ts-jest": "26.4.1",
"typescript": "^4.0.3"
}
}