-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
42 lines (42 loc) · 977 Bytes
/
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
{
"name": "selenium-binaries",
"main": "index.js",
"version": "0.15.0",
"description": "Downloads Selenium related binaries for your OS",
"author": "Joseph Spencer",
"scripts": {
"pretest": "jshint lib",
"test": "node --require ./lib/init-environment.js ./lib/install.js",
"install": "node --require ./lib/init-environment.js ./lib/install.js"
},
"repository": {
"type": "git",
"url": "https://github.com/spunjs/selenium-binaries.git"
},
"keywords": [
"selenium",
"chromedriver",
"geckodriver",
"iedriver"
],
"contributors": [
{
"name": "Alex Fournier",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/spunjs/selenium-binaries/issues"
},
"devDependencies": {
"jshint": "^2.5.2"
},
"dependencies": {
"async": "^0.9.0",
"download": "^7.1.0",
"is-dir": "^1.0.0",
"mkdirp": "^0.5.0",
"rimraf": "^2.5.4"
}
}