-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
73 lines (73 loc) · 2.07 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
{
"name": "mocha-webdriver-runner",
"version": "0.6.4",
"description": "Run Mocha tests using Selenium WebDriver",
"keywords": [
"mocha",
"webdriverjs",
"javascript",
"tdd",
"browser"
],
"repository": {
"type": "git",
"url": "https://github.com/zbigg/mocha-webdriver-runner.git"
},
"main": "lib/index",
"bin": "lib/cli.js",
"files": [
"lib/*.js",
"lib/*.d.ts",
"dist/*.js"
],
"scripts": {
"prepare": "tsc && rollup --config rollup.config.js",
"serve": "http-server -p 8099",
"test-sample": "npx ts-node ./src/cli.ts http://localhost:8099/test/sample-suite/index-headless.html",
"test-sample-chrome": "SELENIUM_BROWSER=chrome npm run test-sample --",
"test-sample-firefox": "SELENIUM_BROWSER=firefox npm run test-sample --",
"test-sample-safari": "SELENIUM_BROWSER=safari npm run test-sample --",
"test": "mocha -r ts-node/register test/*.ts",
"watch:test": "npm run test -- --watch-extensions ts --watch",
"clean": "rm -rf lib/ dist/"
},
"author": "zbigg <z.zagorski@gmail.com>",
"license": "MIT",
"dependencies": {
"@zbigg/treesync": "^0.3.0",
"commander": "^9.0.0",
"lodash": "^4.17.20",
"selenium-webdriver": "^4.1.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^15.1.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@types/chai": "^4.2.12",
"@types/events": "^3.0.0",
"@types/lodash": "^4.14.161",
"@types/mocha": "^10.0.1",
"@types/node": "^14.11.2",
"@types/qs": "^6.9.5",
"@types/selenium-webdriver": "^4.0.9",
"@types/sinon": "^10.0.13",
"chai": "^4.2.0",
"chromedriver": "^124.0.3",
"events": "^3.2.0",
"geckodriver": "^4.4.0",
"http-server": "^14.1.0",
"mocha": "^10.2.0",
"qs": "^6.9.2",
"rollup": "^2.28.2",
"rollup-plugin-typescript2": "^0.34.1",
"sinon": "^15.0.1",
"ts-node": "^10.5.0",
"tslib": "^2.0.1",
"typescript": "^4.0.3",
"xmldom": "^0.6.0",
"xpath": "^0.0.29"
},
"peerDependencies": {
"mocha": "5 || 6 || 7 || 8"
},
"packageManager": "yarn@4.2.2"
}