-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
60 lines (60 loc) · 1.44 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
{
"name": "min-wd",
"version": "2.12.0",
"description": "Minimal WebDriver that pipes stdin to browsers",
"keywords": [
"browserify-plugin",
"webdriver",
"selenium",
"saucelabs",
"browserstack"
],
"author": "Maximilian Antoni (http://maxantoni.de)",
"contributors": [
"Dustin Wyatt <[email protected]>",
"az7arul <[email protected]>",
"Matheus Kautzmann <[email protected]>",
"Moshe Kolodny <[email protected]>",
"Davide Callegari <[email protected]>",
"Thomas Junghans <[email protected]>"
],
"homepage": "https://github.com/mantoni/min-webdriver",
"main": "./lib/plugin.js",
"browser": "./lib/client.js",
"bin": {
"min-wd": "bin/cmd.js"
},
"scripts": {
"lint": "eslint .",
"test": "mocha",
"watch": "mocha --watch",
"preversion": "npm test",
"version": "changes --commits --footer",
"postversion": "git push --follow-tags && npm publish"
},
"repository": {
"type": "git",
"url": "https://github.com/mantoni/min-webdriver.git"
},
"dependencies": {
"brout": "^1.1.0",
"listen": "^1.0.0",
"resolve": "^1.8.1",
"saucelabs": "^1.5.0",
"source-mapper": "^2.0.0",
"through2": "^2.0.0"
},
"devDependencies": {
"@studio/changes": "^1.7.0",
"eslint": "^5.0.1",
"mocha": "^5.2.0",
"sinon": "^6.1.5"
},
"files": [
"bin",
"lib",
"README.md",
"LICENSE"
],
"license": "MIT"
}