forked from nightwatchjs/mobile-helper-tool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.45 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
{
"name": "@nightwatch/mobile-helper",
"version": "0.1.14",
"description": "Easily setup all the requirements needed to get started with mobile-web testing using Nightwatch.",
"main": "dist/index.js",
"bin": "./index.js",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"build": "tsc",
"dev": "tsc && node dev.js",
"prepublishOnly": "tsc --outDir dist",
"test:unit": "npx nightwatch tests/unit_tests",
"eslint": "eslint src"
},
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/nightwatchjs/mobile-helper-tool"
},
"devDependencies": {
"@types/cli-progress": "^3.11.0",
"@types/download": "^8.0.1",
"@types/inquirer": "^8.2.3",
"@types/minimist": "^1.2.2",
"@types/mockery": "^1.4.30",
"@types/node": "^18.7.21",
"@types/which": "^2.0.1",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"eslint": "^8.24.0",
"mockery": "^2.1.0",
"nightwatch": "^3.6.2",
"nock": "^13.2.9",
"ts-node": "^10.9.1",
"typescript": "^4.8.3"
},
"dependencies": {
"ansi-colors": "^4.1.3",
"appium-adb": "^11.1.0",
"axios": "^1.1.2",
"boxen": "5.1.2",
"cli-progress": "^3.11.2",
"dotenv": "^16.0.3",
"download": "^8.0.0",
"inquirer": "^8.2.4",
"minimist": "^1.2.6",
"untildify": "^4.0.0",
"which": "^2.0.2"
}
}