-
-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
59 lines (59 loc) · 1.48 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
50
51
52
53
54
55
56
57
58
59
{
"name": "nativescript-dev-appium",
"version": "6.1.3",
"description": "A NativeScript plugin to help integrate and run Appium tests",
"author": "NativeScript",
"license": "MIT",
"main": "./index.js",
"directories": {
"lib": "./lib",
"bin": "./bin"
},
"repository": {
"type": "git",
"url": "https://github.com/NativeScript/nativescript-dev-appium.git"
},
"keywords": [
"nativescript",
"appium",
"test"
],
"maintainers": [
{
"name": "SvetoslavTsenov",
"email": "tsenov@progress.com"
}
],
"bin": {
"nativescript-dev-appium": "./bin/nativescript-dev-appium",
"ns-dev-appium": "./bin/nativescript-dev-appium",
"ns-appium": "./bin/nativescript-dev-appium",
"ns-start-session": "./bin/start-session"
},
"dependencies": {
"app-root-path": "~2.1.0",
"blink-diff": "~1.0.13",
"frame-comparer": "^2.0.1",
"glob": "^7.1.0",
"inquirer": "^6.2.0",
"mobile-devices-controller": "~5.2.0",
"wd": "~1.11.3",
"webdriverio": "~4.14.0",
"yargs": "~12.0.5"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.5",
"@types/node": "~10.12.18",
"chai": "^4.2.0",
"mocha": "^5.2.0",
"typescript": "~3.1.6"
},
"scripts": {
"postinstall": "node ./postinstall.js",
"prepare": "tsc",
"watch": "tsc --watch",
"test": "mocha --timeout 999999",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md"
}
}