forked from electron-userland/spectron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.16 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
{
"name": "spectron",
"version": "5.0.0",
"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",
"lint": "standard",
"test": "mocha && standard"
},
"engines": {
"node": ">=0.12.4"
},
"repository": "https://github.com/electron/spectron",
"keywords": [
"electron",
"chromedriver",
"webdriverio",
"selenium"
],
"author": "Kevin Sawicki",
"license": "MIT",
"dependencies": {
"dev-null": "^0.1.1",
"electron-chromedriver": "~3.0.0",
"request": "^2.87.0",
"split": "^1.0.0",
"webdriverio": "^4.13.0"
},
"devDependencies": {
"@types/webdriverio": "^4.8.0",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"chai-roughly": "^1.0.0",
"check-for-leaks": "^1.0.2",
"electron": "~3.0.0",
"husky": "^0.14.3",
"mocha": "^5.2.0",
"standard": "^12.0.1",
"temp": "^0.8.3",
"tslint": "^5.10.0",
"typescript": "^2.8.4"
}
}