-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.21 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
{
"name": "appiumsample",
"version": "1.0.0",
"description": "Appium sample project in Node.js",
"main": "index.js",
"scripts": {
"test:android": "ava --timeout 300000",
"test:ios": "PLATFORM=ios ava --timeout 300000"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Peter-Nagy/Appium-Parallel-Testing.git"
},
"keywords": [
"appium",
"sample",
"android",
"ios",
"test",
"testing",
"node",
"nodejs"
],
"author": "Péter Szabolcs Nagy",
"license": "MIT",
"bugs": {
"url": "https://github.com/Peter-Nagy/Appium-Parallel-Testing/issues"
},
"homepage": "https://github.com/Peter-Nagy/Appium-Parallel-Testing#readme",
"dependencies": {
"appium-controller": "^1.1.6",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"colors": "1.1.2",
"express": "4.16.2",
"generic-pool": "^3.4.1",
"mocha": "^4.0.1",
"q": "^1.5.1",
"underscore": "^1.8.3",
"wd": "^1.4.1",
"wd-bridge": "0.0.2"
},
"devDependencies": {
"ava": "^0.25.0"
},
"ava": {
"files": [
"tests/*.js"
],
"failFast": true,
"failWithoutAssertions": false,
"tap": true,
"powerAssert": false
}
}