-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
49 lines (49 loc) · 1.3 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
45
46
47
48
49
{
"name": "appium-installer",
"version": "3.0.0",
"description": "CLI to installed appium 2.0",
"main": "./dist/index.js",
"exports": "./dist/index.js",
"scripts": {
"clean": "rimraf coverage dist .tmp",
"compile": "babel src/ -d dist/",
"prettier": "prettier 'src/**/*.js' --write --single-quote"
},
"dependencies": {
"@inquirer/checkbox": "^0.0.30-alpha.0",
"@nightwatch/mobile-helper": "^0.1.12",
"appium-adb": "^9.10.24",
"appium-doctor": "^1.16.2",
"chalk": "^4.1.2",
"inquirer": "^8.2.4",
"inquirer-fuzzy-path": "^2.3.0",
"inquirer-search-list": "^1.2.6",
"lodash": "^4.17.21",
"ora": "5.4.1",
"pkg-dir": "^7.0.0",
"shelljs": "^0.8.5"
},
"devDependencies": {
"@babel/cli": "^7.16.8",
"@babel/core": "^7.16.12",
"@babel/preset-env": "^7.16.11",
"prettier": "^2.7.1",
"rimraf": "^3.0.2"
},
"engines": {
"node": ">=16"
},
"bin": {
"appium-installer": "./dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AppiumTestDistribution/appium-installer.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/AppiumTestDistribution/appium-installer/issues"
},
"homepage": "https://github.com/AppiumTestDistribution/appium-installer#readme"
}