This repository has been archived by the owner on Jan 19, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
126 lines (126 loc) · 3.83 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "testarmada-nightwatch-extra",
"version": "5.2.2",
"description": "extra useful nightwatch command and assertion",
"main": "index.js",
"scripts": {
"build": "./node_modules/.bin/babel src --out-dir lib --source-maps && cp -r injections lib/",
"build:test:clean": "rm -rf tests/lib/* && ./node_modules/.bin/babel tests/src --out-dir tests/lib --source-maps",
"build:clean": "rm -rf temp/* && rm -rf reports/* && rm -rf lib/* && npm run build",
"test:sauce": "./node_modules/.bin/magellan --external_build_id=$TRAVIS_BUILD_ID --sauce_create_tunnels --bail_time=${MAGELLAN_INDIVIDUAL_TEST_BAIL_TIME} --max_workers=${MAGELLAN_MAX_WORKERS} --sauce_browsers=${TIER_1_BROWSERS},${TIER_2_BROWSERS} --nightwatch_config tests/conf/nightwatch.json --sync_browsers safari:10,iphone,ipad --config tests/magellan.json",
"test": "npm run build:clean && npm run build:test:clean && ./node_modules/.bin/mocha --recursive tests/lib",
"coverage": "npm run build:clean && npm run build:test:clean && ./node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha -- --recursive tests/lib",
"upload-coverage": "./node_modules/.bin/codecov --root=lib",
"lint": "./node_modules/.bin/eslint src/**/*.js",
"prepublish": "npm run build:clean"
},
"engines": {
"node": ">=4",
"npm": ">=3"
},
"repository": {
"type": "git",
"url": "[email protected]:TestArmada/nightwatch-extra.git"
},
"bin": {
"owl": "./bin/owl"
},
"contributors": [
{
"name": "Dave Cadwallader",
"url": "https://github.com/geekdave"
},
{
"name": "Maciej Adwent",
"url": "https://github.com/Maciek416"
},
{
"name": "Yamei Wang",
"url": "https://github.com/ywang0"
},
{
"name": "Jory Graham",
"url": "https://github.com/jory"
},
{
"name": "Patrick Kettner",
"url": "https://github.com/patrickkettner"
},
{
"name": "Gwen Roberts",
"url": "https://github.com/gwenr"
},
{
"name": "Per Nilsson",
"url": "https://github.com/per-nilsson"
},
{
"name": "Sergey Chebykin",
"url": "https://github.com/dr-nafanya"
},
{
"name": "Aaron Pollack",
"url": "https://github.com/lolpack"
},
{
"name": "Lei Zhu",
"url": "https://github.com/archlichking"
},
{
"name": "Rob Gerstenberger",
"url": "https://github.com/rgerstenberger"
},
{
"name": "Abha Gupta",
"url": "https://github.com/abhagupta"
},
{
"name": "Mukund Goel",
"url": "https://github.com/mukundgoel"
},
{
"name": "Kimberly Lightholder",
"url": "https://github.com/1un4r"
}
],
"license": "MIT",
"dependencies": {
"bluebird": "^3.4.7",
"cli-color": "1.1.0",
"eslint": "^4.18.2",
"eslint-config-walmart": "^1.1.0",
"eslint-plugin-filenames": "^1.1.0",
"jimp": "^0.2.27",
"json-stringify-safe": "5.0.1",
"jsonfile": "2.4.0",
"lodash": "^4.6.1",
"moment": "^2.13.0",
"q": "1.4.1",
"request": "2.79.0",
"sanitize-filename": "1.6.1",
"statsd-client": "^0.2.2",
"testarmada-tree-kill": "^2.0.1",
"yargs": "6.5.0"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-eslint": "^7.1.1",
"babel-preset-es2015": "^6.18.0",
"appium": "^1.6.3",
"geckodriver": "^1.4.0",
"nightwatch": "^0.9.11",
"testarmada-magellan": "^10.0.0",
"testarmada-magellan-local-executor": "^1.0.0",
"testarmada-magellan-nightwatch-plugin": "^6.0.0",
"testarmada-magellan-saucelabs-executor": "^1.0.0",
"testarmada-magellan-browserstack-executor": "1.0.0-beta3",
"phantomjs": "2.1.7",
"chromedriver": "^2.27.0",
"selenium-server": "^3.1.0",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"codecov": "^3.7.1",
"istanbul": "^0.4.5",
"mocha": "^3.2.0"
}
}