forked from Urucas/cordova-test
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.52 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
{
"name": "cordova-test",
"version": "0.1.6",
"description": "command-line tool to automate Cordova Appium tests suite",
"preferGlobal": true,
"bin": {
"cordova-test": "./bin/cli"
},
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && babel ./lib --out-dir ./dist && mkdir ./dist/caps && cp ./lib/caps/* ./dist/caps",
"prestart": "npm run build",
"test": "node_modules/mocha/bin/mocha --compilers js:babel/register",
"start": "./bin/cli"
},
"repository": {
"type": "git",
"url": "https://github.com/Urucas/cordova-test.git"
},
"keywords": [
"cordova",
"phonegap",
"test",
"testing",
"appium",
"selenium",
"android",
"ios",
"sauce labs",
"mocha",
"tape"
],
"author": "Urucas <hello@urucas.com>",
"contributors": [
"Chau Thai <chau.thai@mobilexag.de>",
"Bruno Alassia <vruno.alassia@gmail.com>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Urucas/cordova-test/issues"
},
"homepage": "https://github.com/Urucas/cordova-test",
"devDependencies": {
"babel": "^5.8.38",
"babel-eslint": "^6.0.4",
"chai": "^3.5.0",
"eslint": "^2.12.0",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.9.0",
"eslint-plugin-jsx-a11y": "^1.4.2",
"eslint-plugin-react": "^5.1.1",
"mocha": "^2.5.3",
"rimraf": "^2.5.2"
},
"dependencies": {
"appium-running": "^0.1.3",
"colors": "^1.1.2",
"cordova-lib": "^7.0.1",
"finf": "0.0.1",
"fop": "0.0.2"
}
}