-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1017 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 1017 Bytes
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
{
"name": "selectron",
"version": "1.0.0",
"description": "E2E testing library for Electron.js applications using Selenium",
"main": "index.js",
"_moduleAliases": {
"@": "."
},
"scripts": {
"test": "cross-env NODE_ENV=dev mocha --require ./test/setup-env.js \"test/**/*.{js,test.js}\" --timeout 60000",
"test:local": "cross-env NODE_ENV=local mocha --require ./test/setup-env.js \"test/**/*.{js,test.js}\" --timeout 60000",
"test:dev": "cross-env NODE_ENV=dev mocha --require ./test/setup-env.js \"test/**/*.{js,test.js}\" --timeout 60000",
"postinstall": "node node_modules/chromedriver/install.js",
"e2e": "mocha --require ./test/setup-env.js \"test/**/*.{js,test.js}\" --timeout 60000"
},
"keywords": [
"e2e"
],
"author": "Felipe Caparelli",
"license": "MIT",
"devDependencies": {
"cross-env": "^7.0.3",
"dotenv": "^16.1.4",
"chromedriver": "140.0.4",
"mocha": "^11.7.4",
"module-alias": "^2.2.3",
"selenium-webdriver": "^4.11.1"
}
}