-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
39 lines (39 loc) · 1.65 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
{
"name": "selenium-automation-toolbox",
"version": "1.0.0",
"private": true,
"description": "This is the skeleton code to starting Selenium automation for a site. The skeleton uses oneexchange.com, but it can be easily updated to something else.",
"repository": {
"type": "git",
"url": "https://github.com/fushinoryuu/SeleniumAutomationToolbox"
},
"scripts": {
"help": "npm-scripts-info",
"netframework_build": "powershell ./build.ps1 -Target DefaultNetFramework",
"netframework_tests": "powershell ./build.ps1 -Target TestsNetFramework",
"hub": "start call powershell ./selenium/HUB_SeleniumGrid.bat",
"node": "start call powershell ./selenium/NODE_SeleniumGrid.bat"
},
"scripts-info": {
"netframework_build": "Installs the dependencies, builds the project, and executes tests.",
"netframework_tests": "Assumes dependencies are already installed. This will only build the project and execute the tests.",
"hub": "Starts a Selenium Server Hub.",
"node": "Starts a Selenium Server Node.",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"npm-scripts-info": "^0.3.6",
"aspnet-webpack": "^1.0.28",
"aspnet-webpack-react": "^1.0.5",
"babel-core": "^6.24.0",
"babel-loader": "^6.4.1",
"babel-preset-es2015": "^6.24.0",
"babel-preset-react": "^6.23.0",
"react": "15.4.2",
"react-dom": "^15.4.2",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.4.2",
"webpack-hot-middleware": "^2.17.1"
},
"main": "webpack.config.js"
}