forked from Polymer/wct-local
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
81 lines (81 loc) · 1.97 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
{
"name": "wct-headless",
"version": "2.2.2",
"description": "WCT plugin that enables support for headless local browsers via Selenium",
"keywords": [
"wct",
"web-component-tester",
"plugin"
],
"homepage": "https://github.com/t2ym/wct-headless",
"bugs": "https://github.com/t2ym/wct-headless/issues",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "https://github.com/t2ym/wct-headless.git"
},
"main": "lib/plugin.js",
"typings": "lib/plugin.d.ts",
"scripts": {
"lint": "gulp lint",
"build": "tsc",
"prepublish": "tsc",
"postinstall": "node scripts/postinstall.js"
},
"wct-plugin": {
"cli-options": {
"browsers": {
"help": "Headless browsers to run tests on, or 'all'.",
"full": "headless",
"metavar": "NAME",
"abbr": "h",
"list": true
},
"seleniumArgs": {
"help": "Additional selenium server arguments. Port is auto-selected.",
"full": "selenium-arg",
"metavar": "ARG",
"list": true
},
"skipSeleniumInstall": {
"help": "Skip trying to install selenium.",
"full": "skip-selenium-install",
"flag": true
}
}
},
"devDependencies": {
"gulp": "^3.8.10",
"tools-common": "github:Polymer/tools-common#aa1c22d",
"tslint": "^3.14.0",
"typescript": "2.3.2"
},
"dependencies": {
"@types/chalk": "^0.4.28",
"@types/express": "^4.0.30",
"@types/freeport": "^1.0.19",
"@types/launchpad": "^0.6.0",
"@types/node": "^6.0.31",
"@types/which": "^1.0.27",
"chalk": "^1.1.1",
"cleankill": "^2.0.0",
"freeport": "^1.0.4",
"launchpad": "^0.6.0",
"promisify-node": "^0.4.0",
"selenium-standalone": "^6.7.0",
"which": "^1.0.8"
},
"engines": {
"node": ">=6.0"
},
"selenium-overrides": {
"version": "3.4.0",
"drivers": {
"firefox": {
"version": "0.18.0"
},
"chrome": {},
"ie": {}
}
}
}