-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 965 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
{
"name": "browser-drivers",
"version": "1.0.12",
"description": "Package for resolving appropriate browser driver version",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"scripts": {
"assemble": "tsc",
"test": "npm run assemble && cd spec && rimraf node_modules/browser-drivers/ && npm i && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/petrkoutnycz/browser-drivers.git"
},
"keywords": [
"browser",
"selenium-driver",
"browser-driver",
"chrome-driver"
],
"author": "Petr Koutny <me@petrkoutny.cz>",
"license": "MIT",
"bugs": {
"url": "https://github.com/petrkoutnycz/browser-drivers/issues"
},
"homepage": "https://github.com/petrkoutnycz/browser-drivers#readme",
"devDependencies": {
"@types/lodash": "~4.14.0",
"@types/node": "~8.5.2",
"rimraf": "~2.5.0",
"typescript": "~2.8.0"
},
"dependencies": {
"lodash": "~4.17.0"
}
}