-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
78 lines (78 loc) · 2.04 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "appium-tizen-driver",
"description": "Tizen support for Appium",
"keywords": [
"appium",
"tizen",
"testing",
"automation",
"mobile",
"mobile testing"
],
"version": "1.1.1-beta.5",
"author": "tizen",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/Samsung/appium-tizen-driver.git"
},
"bugs": {
"url": "https://github.com/Samsung/appium-tizen-driver/issues"
},
"engines": [
"node"
],
"main": "./build/index.js",
"bin": {},
"directories": {
"lib": "lib"
},
"files": [
"index.js",
"lib",
"build/index.js",
"build/lib",
"uiautomator"
],
"dependencies": {
"@babel/runtime": "^7.0.0",
"appium-base-driver": "^7.2.3",
"appium-sdb": "^1.0.1-beta.1",
"appium-support": "^2.8.0",
"asyncbox": "^2.0.4",
"bluebird": "^3.4.7",
"fancy-log": "^1.3.2",
"jimp": "^0.16.1",
"lodash": "^4.17.9",
"source-map-support": "^0.5.9",
"teen_process": "^1.9.0",
"yargs": "^16.0.3"
},
"scripts": {
"clean": "rm -rf node_modules && rm -f package-lock.json && npm install",
"prepare": "gulp prepublish",
"test": "gulp once",
"watch": "gulp watch",
"build": "gulp transpile",
"mocha": "mocha",
"precommit-msg": "echo 'Pre-commit checks...' && exit 0",
"precommit-test": "REPORTER=dot gulp once",
"lint": "gulp eslint"
},
"pre-commit": [
"precommit-msg",
"precommit-test"
],
"devDependencies": {
"ajv": "^6.5.3",
"appium-gulp-plugins": "^5.4.0",
"babel-eslint": "^10.0.0",
"eslint": "^7.9.0",
"eslint-config-appium": "^4.5.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-mocha": "^8.0.0",
"eslint-plugin-promise": "^4.0.0",
"gulp": "^4.0.0",
"pre-commit": "^1.1.3"
}
}