-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.54 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.54 KB
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
{
"name": "selenium-assistant",
"version": "6.1.0",
"description": "A node module to help with use of selenium driver",
"main": "src/index.js",
"scripts": {
"coveralls": "cat ./coverage/lcov.info | coveralls",
"istanbul": "npm run lint && istanbul cover _mocha",
"lint": "eslint '.'",
"mocha": "mocha",
"pretest": "npm install --no-save chromedriver geckodriver",
"test": "npm run istanbul && npm run coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GoogleChrome/selenium-assistant.git"
},
"engines": {
"node": ">= 8.9.0"
},
"keywords": [
"selenium",
"webdriver"
],
"author": "Matt Gaunt",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/GoogleChrome/selenium-assistant/issues"
},
"homepage": "https://github.com/GoogleChrome/selenium-assistant#readme",
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "^3.0.5",
"eslint": "^6.1.0",
"eslint-config-google": "^0.13.0",
"express": "^4.17.1",
"firebase": "^6.3.3",
"glob": "^7.1.4",
"istanbul": "^0.4.5",
"jsdoc": "^3.6.3",
"mocha": "^6.2.0",
"proxyquire": "^2.1.1",
"sinon": "^7.3.2"
},
"dependencies": {
"chalk": "^2.4.2",
"dmg": "^0.1.0",
"fs-extra": "^8.1.0",
"mkdirp": "^0.5.1",
"node-localstorage": "^1.3.1",
"request": "^2.88.0",
"sauce-connect-launcher": "^1.2.7",
"selenium-webdriver": "^4.0.0-alpha.7",
"semver": "^6.3.0",
"which": "^1.3.1",
"yauzl": "^2.10.0"
},
"files": [
"src/"
]
}