forked from Hungrated/autotest-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 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
{
"name": "autotest-client",
"version": "1.0.0",
"description": "An exact environment for web testing based on macaca, with flexbility.",
"main": "index.js",
"scripts": {
"start": "selenium-standalone start",
"desktop": "make test-desktop-chrome",
"android": "make test-android-chrome",
"ios": "make test-ios-safari",
"rec": "uirecorder sample/test.spec.js",
"server": "selenium-standalone start",
"stop": "pkill -f selenium-standalone",
"rep": "macaca run -p 4444 -d sample/test.spec.js --verbose",
"autorep": "npm run server & npm run rep && npm run stop",
"delrec": "rm -rf sample",
"rerec": "npm run delrec && npm run rec"
},
"keywords": [
"test",
"macaca"
],
"author": "Hungrated",
"license": "MIT",
"devDependencies": {
"chai": "^4.1.2",
"jwebdriver": "^2.2.5",
"macaca-android": "^2.0.47",
"macaca-chrome": "^1.0.7",
"macaca-cli": "^2.1.2",
"macaca-ios": "^2.0.30",
"macaca-reporter": "^1.1.0",
"macaca-simple-reportor": "^1.0.0",
"macaca-wd": "^1.0.37",
"mocha": "^5.1.0",
"resemblejs-node": "^1.0.0"
},
"dependencies": {
"opn": "^5.2.0",
"path": "^0.12.7"
}
}