forked from electron-userland/spectron
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.27 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.27 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
{
"name": "spectron",
"version": "10.0.1",
"description": "Easily test your Electron apps using ChromeDriver and WebdriverIO.",
"main": "index.js",
"types": "./lib/spectron.d.ts",
"scripts": {
"lint": "standard",
"prepack": "check-for-leaks",
"prepush": "check-for-leaks",
"pretest": "tslint lib/spectron.d.ts && tsc lib/spectron.d.ts",
"test": "xvfb-maybe mocha && standard",
"postinstall": "node lib/rpath-fix.js"
},
"engines": {
"node": ">=0.12.4"
},
"repository": "https://github.com/electron/spectron",
"keywords": [
"electron",
"chromedriver",
"webdriverio",
"selenium"
],
"author": "Kevin Sawicki",
"license": "MIT",
"dependencies": {
"@types/webdriverio": "^4.8.0",
"dev-null": "^0.1.1",
"electron-chromedriver": "^8.0.0",
"request": "^2.87.0",
"split": "^1.0.0",
"webdriverio": "^4.13.0"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-roughly": "^1.0.0",
"check-for-leaks": "^1.0.2",
"electron": "^8.0.0",
"husky": "^4.2.1",
"mocha": "^7.0.1",
"standard": "^12.0.1",
"temp": "^0.9.0",
"tslint": "^6.0.0",
"typescript": "^3.5.3",
"xvfb-maybe": "^0.2.1"
},
"resolutions": {
"@types/node": "^12.0.0"
}
}