-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
57 lines (57 loc) · 1.53 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
{
"name": "mocha-webdriver",
"version": "0.3.3",
"description": "Write Mocha style tests using selenium-webdriver, with many conveniences.",
"main": "dist/index",
"typings": "dist/index",
"scripts": {
"build": "tsc",
"lint": "tslint -p .",
"prepack": "npm run build && npm run test && npm run lint",
"test": "MOCHA_WEBDRIVER_HEADLESS=1 mocha test",
"test-parallel": "MOCHA_WEBDRIVER_HEADLESS=1 mocha test --parallel --jobs=4",
"test-debug": "mocha test -b --no-exit"
},
"files": [
"dist",
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/gristlabs/mocha-webdriver.git"
},
"keywords": [
"webdriver",
"mocha",
"testing",
"browser"
],
"author": "Grist Labs",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/gristlabs/mocha-webdriver/issues"
},
"homepage": "https://github.com/gristlabs/mocha-webdriver#readme",
"dependencies": {
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"fs-extra": "^8.0.1",
"mocha": "^10.2.0",
"npm-run-path": "^3.1.0",
"selenium-webdriver": "^4.20.0"
},
"devDependencies": {
"@types/chai": "^4.1.4",
"@types/chai-as-promised": "^7.1.0",
"@types/color-string": "^1.5.0",
"@types/fs-extra": "^7.0.0",
"@types/mocha": "^10.0.1",
"@types/node": "^18.11.9",
"@types/selenium-webdriver": "^4.1.22",
"color-string": "^1.5.3",
"ts-node": "^10.9.1",
"tslint": "^5.16.0",
"typescript": "^4.8.4",
"typescript-tslint-plugin": "^0.3.1"
}
}