-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
65 lines (65 loc) · 1.61 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
{
"name": "cordova-test",
"version": "0.1.8",
"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",
"prepublish": "npm run test && npm run build"
},
"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 <[email protected]>",
"contributors": [
"Chau Thai <[email protected]>",
"Bruno Alassia <[email protected]>"
],
"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",
"chai-as-promised": "^7.1.1",
"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",
"minimist": "^1.2.0",
"mocha": "^2.5.3",
"rimraf": "^2.5.2",
"wd": "^1.11.4"
},
"dependencies": {
"colors": "^1.1.2",
"cordova-lib": "^7.0.1",
"finf": "0.0.1",
"fop": "0.0.2"
}
}