-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.07 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
{
"name": "appium-webdriver",
"version": "1.0.3",
"description": "Appium Selenium Webdriver Starter Boilerplate for NodeJS with Mocha & AWS Devicefarm insights. Test your mobile apps with ease!",
"author": "morellexf13",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/morellexf13/appium-webdriver.git"
},
"scripts": {
"test": "mocha test/specs/index.js --timeout 200000",
"test-output-json": "mocha test/specs/index.js --timeout 200000 -R mocha-json-output-reporter",
"test-output-allure": "mocha test/specs/index.js --timeout 200000 --reporter mocha-allure-reporter && allure generate --clean && allure open",
"package": "npm install && npm-pack-zip"
},
"keywords": [
"boilerplate",
"nodejs",
"selenium",
"mocha",
"appium",
"devicefarm"
],
"dependencies": {
"chai": "^4.3.7",
"wd": "^1.14.0"
},
"devDependencies": {
"mocha": "^10.2.0",
"mocha-allure-reporter": "^1.4.0",
"mocha-json-output-reporter": "^2.1.0",
"npm-bundle": "^3.0.3",
"npm-pack-zip": "^1.3.0"
}
}