-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1 KB
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
{
"name": "appium-controller",
"version": "1.1.4",
"description": "Starts and stops appium in the background",
"main": "./dist/index.js",
"types": "./src/index.ts",
"build": "tsc",
"bin": {
"appium-controller": "dist/bin/appium-controller.js"
},
"scripts": {
"build": "tsc",
"prepublish": "npm run build",
"test": "node dist/bin/appium-controller.js --start"
},
"keywords": [
"appium",
"start",
"stop",
"background",
"mac",
"windows",
"programmatically"
],
"author": "Aaron Briel <aaronbriel@gmail.com> (http://euronymo.com)",
"license": "ISC",
"repository": {
"type": "git",
"url": "git://github.com/aaronbriel/appium-controller.git"
},
"dependencies": {
"path": "0.12.7",
"fs": "0.0.1-security",
"os": "0.1.1",
"shelljs": "0.7.7",
"child_process": "1.0.2",
"http": "0.0.0",
"yargs": "^8.0.1"
},
"devDependencies": {
"typescript": "^2.3.3",
"@types/node": "^7.0.22",
"@types/yargs": "^6.6.0"
}
}