forked from StephenDavidson/electron-spectron-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 948 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
37
{
"name": "electron-spectron-example",
"version": "1.0.0",
"description": "Example test automation of electron app using spectron",
"main": "index.js",
"scripts": {
"test": "node ./node_modules/mocha/bin/_mocha",
"lint": "node ./node_modules/.bin/eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/StephenDavidson/electron-spectron-example.git"
},
"keywords": [
"example",
"spectron",
"electron",
"selenium"
],
"author": "Stephen Davidson",
"license": "MIT",
"bugs": {
"url": "https://github.com/StephenDavidson/electron-spectron-example/issues"
},
"homepage": "https://github.com/StephenDavidson/electron-spectron-example#readme",
"devDependencies": {
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"electron": "^6.0.12",
"eslint": "^5.5.0",
"mocha": "^5.2.0",
"spectron": "^8.0.0"
},
"engines": {
"node": "^8.12.0"
}
}