-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
81 lines (81 loc) · 2.72 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "awb",
"version": "0.7.10",
"description": "simple light weight interface for selenium webdriver (node js)",
"main": "./awb.js",
"bin": {
"awb": "./bin/awb"
},
"repository": {
"type": "git",
"url": "git+https://github.com/potapovDim/interface-webdriver.git"
},
"author": {
"name": "Potapov Dmytro",
"url": "https://github.com/potapovDim"
},
"typings": "awb.d.ts",
"keywords": [
"nodejs",
"selenium",
"selenium-webdriver",
"webdriver",
"automation-testing",
"wd-interface",
"browser-automation-testing",
"testing",
"awb"
],
"tags": [
"nodejs",
"selenium",
"selenium-webdriver",
"webdriver",
"automation-testing",
"wd-interface",
"browser-automation-testing",
"testing",
"webdriver-binding",
"awb"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/potapovDim/interface-webdriver/issues"
},
"homepage": "https://github.com/potapovDim/interface-webdriver#readme",
"dependencies": {
"node-fetch": "^2.6.0",
"tar": "^4.4.6",
"unzipper": "^0.10.1",
"xml2js": "^0.4.19"
},
"engines": {
"node": ">=8.0.0"
},
"contributors": [
"Gennadii Mishchevskii <[email protected]> (https://github.com/Gennadiii)"
],
"scripts": {
"lint": "eslint lib/** --ext .js",
"pretest": "./bin/awb standalone chrome",
"test": "npm run integration-chrome && npm run unit",
"integration-crash": "mocha --timeout 60000 $(find ./__specs__/crash -path '*.spec.js')",
"integration-chrome": "mocha --timeout 60000 --bail $(find ./__specs__/integration/chrome -path '*.spec.js')",
"integration-chrome:watch": "mocha --timeout 60000 -w --harmony --trace-deprecation $(find ./__specs__/integration/chrome -path '*.spec.js')",
"integration-firefox": "mocha --timeout 60000 $(find ./__specs__/integration/firefox -path '*.spec.js')",
"integration-firefox:watch": "mocha --timeout 60000 -w $(find ./__specs__/integration/firefox -path '*.spec.js')",
"integration-safari": "mocha --timeout 60000 $(find ./__specs__/integration/safari -path '*.spec.js')",
"integration-safari:watch": "mocha --timeout 60000 -w $(find ./__specs__/integration/safari -path '*.spec.js')",
"unit": "mocha --timeout 60000 $(find ./__specs__/units -path '*.spec.js')",
"unit:w": "mocha --timeout 60000 -w $(find ./__specs__/units -path '*.spec.js')",
"google-exapmle": "mocha --timeout 15000 ./examples/google.example.js",
"start-test-app": "NODE_ENV=test-app webpack-dev-server ./webpack.test.app.js",
"kill-test-app": "kill $(ps aux | grep 'webpack' | awk '{print $2}')"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^4.19.1",
"mocha": "^5.2.0",
"sinon": "^4.5.0"
}
}