-
Notifications
You must be signed in to change notification settings - Fork 228
/
package.json
61 lines (61 loc) · 1.69 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
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "spectron",
"version": "19.0.0",
"description": "Easily test your Electron apps using ChromeDriver and WebdriverIO.",
"main": "index.js",
"types": "./lib/spectron.d.ts",
"scripts": {
"lint": "eslint \"**/*.js\" \"**/*.ts\" && prettier --check \"**/*.js\" \"**/*.ts\"",
"prettier:write": "prettier --write \"**/*.js\" \"**/*.ts\"",
"prepare": "check-for-leaks",
"prepush": "check-for-leaks",
"pretest": "tsc",
"test": "npm run lint && xvfb-maybe --server-args=\"-screen 0 1024x768x24\" -- mocha",
"postinstall": "node lib/rpath-fix.js"
},
"engines": {
"node": ">=12.20.0"
},
"repository": "https://github.com/electron/spectron",
"keywords": [
"electron",
"chromedriver",
"webdriverio",
"selenium"
],
"author": "Kevin Sawicki",
"license": "MIT",
"dependencies": {
"@electron/remote": "2.0.4",
"dev-null": "^0.1.1",
"electron-chromedriver": "17.0.0",
"got": "^11.8.0",
"split": "^1.0.1",
"webdriverio": "7.16.13"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.8.2",
"@typescript-eslint/parser": "^4.8.2",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-roughly": "^1.0.0",
"check-for-leaks": "^1.2.1",
"electron": "^17.0.0",
"eslint": "^7.14.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"husky": "^4.3.0",
"mocha": "^9.0.2",
"prettier": "^2.2.0",
"standard": "^16.0.3",
"temp": "^0.9.4",
"ts-node": "^10.3.0",
"typescript": "^4.4.4",
"xvfb-maybe": "^0.2.1"
},
"resolutions": {
"@types/node": "^12.0.0"
}
}