forked from ReactiveCircus/android-emulator-runner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.15 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
44
{
"name": "android-emulator-runner",
"version": "0.0.0",
"private": true,
"description": "A GitHub Action for installing, configuring and running Android Emulators on macOS virtual machines.",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"test": "tsc --noEmit && jest",
"lint": "eslint . --ext .ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ReactiveCircus/android-emulator-runner.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "Reactive Circus",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/exec": "^1.0.4",
"@actions/tool-cache": "^1.6.1",
"minimist": "^1.2.5"
},
"devDependencies": {
"@types/jest": "^24.9.1",
"@types/node": "^12.19.11",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.0",
"jest": "^26.6.3",
"jest-circus": "^25.5.4",
"prettier": "^1.19.1",
"ts-jest": "^26.4.4",
"typescript": "^3.9.7"
}
}