forked from testiumjs/testium-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
119 lines (119 loc) · 2.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
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
{
"name": "testium-core",
"version": "1.8.1",
"description": "Juggling the bits and pieces to run integration tests",
"license": "BSD-3-Clause",
"main": "lib/testium-core.js",
"homepage": "https://github.com/testiumjs/testium-core#readme",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/testiumjs/testium-core"
},
"bugs": {
"chat": "http://signup.testiumjs.com/",
"url": "https://github.com/testiumjs/testium-core/issues"
},
"scripts": {
"pretest": "eslint lib test",
"test": "mocha",
"posttest": "nlm verify"
},
"nlm": {
"license": {
"files": [
"lib"
]
}
},
"dependencies": {
"bluebird": "^3.3.3",
"concat-stream": "^1.5.0",
"debug": "^2.2.0",
"find-open-port": "^1.0.0",
"lodash": "^4.6.1",
"mkdirp-then": "^1.1.0",
"qs": "^4.0.0",
"rc": "^1.1.1",
"read-package-json": "^2.0.0",
"reverse-tunnel-ssh": "^1.1.0",
"selenium-download": "^2.0.0",
"subprocess": "~0.3.0",
"testium-cookie": "^1.0.0"
},
"devDependencies": {
"assertive": "^2.1.0",
"babel-core": "^5.8.25",
"babel-eslint": "^4.1.3",
"chromedriver": "^2.38.3",
"cookie": "~0.1.3",
"eslint": "^2.0.0",
"eslint-config-groupon": "^3.2.0",
"eslint-config-groupon-es5": "^3.2.0",
"eslint-plugin-import": "^1.6.1",
"gofer": "^2.4.5",
"mocha": "^3.1.2",
"nlm": "^3.0.0",
"ssh2": "^0.5.2",
"testium-driver-sync": "^1.0.3",
"testium-driver-wd": "^2.3.0",
"testium-example-app": "^1.0.5"
},
"author": {
"name": "Groupon",
"email": "[email protected]"
},
"contributors": [
{
"name": "Andrew Bloom"
},
{
"name": "azu",
"email": "[email protected]"
},
{
"name": "Chris Khoo",
"email": "[email protected]"
},
{
"name": "Jan Krems",
"email": "[email protected]"
},
{
"name": "Jess Telford"
},
{
"name": "Joseph Núñez"
},
{
"name": "Johan Sundström"
},
{
"name": "Justin Searls",
"email": "[email protected]"
},
{
"name": "Parag Gupta",
"email": "[email protected]"
},
{
"name": "Sean Massa",
"email": "[email protected]"
},
{
"name": "David Bushong",
"email": "[email protected]"
}
],
"keywords": [
"test",
"integration",
"selenium",
"webdriver"
],
"files": [
"lib"
],
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}