-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.09 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.09 KB
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
{
"name": "appdriver",
"version": "1.0.0-beta.2",
"main": "main.js",
"bin": "./bin/appdriver",
"scripts": {
"prepublish": "yarn lint && yarn test",
"lint": "eslint .",
"test": "jest",
"test:native-demo-app": "./bin/appdriver --config examples/native-demo-app/config/local.config.js",
"test:my-first-testing-app": "./bin/appdriver --config examples/my-first-testing-app/config/local.config.js"
},
"dependencies": {
"mocha": "7.1.2",
"node-fetch": "2.6.1",
"yargs": "15.3.1"
},
"devDependencies": {
"@types/jest": "26.0.10",
"appium": "1.18.0",
"eslint": "6.8.0",
"eslint-config-airbnb-base": "14.1.0",
"eslint-plugin-import": "2.20.2",
"jest": "26.4.0"
},
"repository": {
"type": "git",
"url": "https://github.com/lewie9021/appdriver.git"
},
"homepage": "https://lewie9021.github.io/appdriver/",
"bugs": "https://github.com/lewie9021/appdriver/issues",
"author": "Lewis Barnes",
"license": "MIT",
"files": [
"src",
"bin"
],
"jest": {
"testMatch": [
"<rootDir>/__tests__/**/*.spec.js"
]
}
}