-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.72 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
{
"name": "appium-fs-driver",
"version": "0.0.0",
"description": "Appium driver for the *nix filesystem",
"main": "./build/index.js",
"directories": {
"lib": "lib"
},
"files": [
"build",
"lib"
],
"scripts": {
"clean": "rm -rf node_modules && rm -f package-lock.json && npm install",
"build": "gulp transpile",
"mocha": "mocha",
"prepare": "gulp prepublish",
"test": "gulp once",
"e2e-test": "gulp e2e-test",
"watch": "gulp watch",
"coverage": "gulp coveralls",
"precommit-msg": "echo 'Pre-commit checks...' && exit 0",
"precommit-test": "REPORTER=dot gulp once",
"lint": "gulp lint",
"lint:fix": "gulp eslint --fix"
},
"pre-commit": [
"precommit-msg",
"precommit-test"
],
"repository": {
"type": "git",
"url": "git+https://github.com/cloudgrey-io/appium-fs-driver.git"
},
"keywords": [
"appium",
"filesystem"
],
"author": "Appium <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/cloudgrey-io/appium-fs-driver/issues"
},
"homepage": "https://github.com/cloudgrey-io/appium-fs-driver#readme",
"devDependencies": {
"appium-gulp-plugins": "^4.1.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint-config-appium": "^4.0.1",
"gulp": "^4.0.2",
"mocha": "^6.2.0",
"pre-commit": "^1.2.2",
"webdriverio": "^5.12.0"
},
"dependencies": {
"@babel/runtime": "^7.5.5",
"appium-base-driver": "^3.20.1",
"appium-support": "^2.32.0",
"asyncbox": "^2.5.3",
"bluebird": "^3.5.5",
"glob": "^7.1.4",
"lodash": "^4.17.15",
"request-promise": "^4.2.4",
"teen_process": "^1.15.0",
"uuid": "^3.3.2",
"yargs": "^13.3.0"
}
}