-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
149 lines (149 loc) · 3.26 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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
{
"name": "testium-core",
"version": "3.2.0",
"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": "https://github.com/testiumjs/testium-core"
},
"bugs": {
"url": "https://github.com/testiumjs/testium-core/issues",
"chat": "http://signup.testiumjs.com/"
},
"scripts": {
"lint": "npm-run-all lint:*",
"lint:js": "eslint .",
"pretest": "npm-run-all pretest:*",
"test": "npm-run-all test:*",
"posttest": "npm-run-all posttest:*",
"test:chromedriver": "mocha test/processes/chromedriver.test.js",
"pretest:lint": "npm-run-all lint:*",
"posttest:nlm": "nlm verify",
"test:unit": "c8 mocha --exclude test/processes/chromedriver.test.js"
},
"c8": {
"reporter": [
"text",
"json-summary"
],
"exclude": [
"example{,s,-app}/**",
"**/*.d.ts",
"**/*{.,-,c}{spec,test}.{js,cjs,mjs,ts}",
"{spec,test}{,s}/**"
]
},
"engines": {
"node": ">=10.13"
},
"mocha": {
"recursive": true,
"timeout": 20000
},
"nlm": {
"license": {
"files": [
"lib"
]
}
},
"dependencies": {
"async": "^3.2.0",
"concat-stream": "^1.5.0",
"debug": "^4.3.1",
"find-open-port": "^2.0.2",
"lodash": "^4.17.21",
"mkdirp": "^1.0.4",
"portscanner": "^2.2.0",
"qs": "^6.9.1",
"rc": "^1.1.1",
"read-package-json": "^2.1.1",
"selenium-download": "^2.0.15",
"testium-cookie": "^2.0.2"
},
"devDependencies": {
"assertive": "^5.0.5",
"c8": "^7.7.3",
"chromedriver": "^95.0.0",
"cookie": "^0.4.0",
"eslint": "^7.29.0",
"eslint-config-groupon": "^10.0.4",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-mocha": "^9.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-regexp": "^1.4.1",
"fs-monkey": "^0.3.3",
"gofer": "^5.1.0",
"memfs": "^2.17.1",
"mocha": "^9.0.1",
"nlm": "^5.6.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.1",
"sinon": "^7.5.0",
"testium-driver-wd": "^4.1.3",
"testium-example-app": "^1.0.5",
"unionfs": "^3.0.2"
},
"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"
}
}