-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
72 lines (72 loc) · 1.92 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
{
"author": "Girma Nigusse <xgirma@gmail.com>",
"bugs": {
"url": "https://github.com/e2e-boilerplate/webdriverio-typescript-ts-node-mocha-chai-expect/issues"
},
"dependencies": {
"@wdio/cli": "7.8.0",
"@wdio/dot-reporter": "7.8.0",
"@wdio/local-runner": "7.8.0",
"@wdio/mocha-framework": "7.8.0",
"@wdio/sync": "7.8.0",
"chai": "4.3.4",
"chromedriver": "90.0.1",
"mocha": "8.4.0",
"ts-node": "9.1.1",
"typescript": "4.3.5",
"wdio-chromedriver-service": "7.2.0"
},
"description": "WebdriverIO end-to-end test automation boilerplate. Using TypeScript, ts-node, Mocha, Chai and Expect.",
"devDependencies": {
"@types/chai": "4.2.21",
"@types/mocha": "8.2.3",
"@types/node": "13.13.52",
"husky": "6.0.0",
"lint-staged": "10.5.4",
"prettier": "2.3.2",
"tslint": "6.1.3",
"tslint-config-prettier": "1.18.0",
"tslint-plugin-prettier": "2.3.0"
},
"homepage": "https://github.com/e2e-boilerplate/webdriverio-typescript-ts-node-mocha-chai-expect#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged --allow-empty"
}
},
"keywords": [
"chai",
"expect",
"mocha",
"ts-node",
"typescript",
"webdriverio",
"webdriverio automation",
"webdriverio boilerplate",
"webdriverio example",
"e2e",
"e2e tests",
"boilerplate",
"integration test",
"test automation",
"javascript"
],
"license": "MIT",
"lint-staged": {
"*.{js,ts,json,md}": [
"tslint --fix",
"prettier --write"
]
},
"name": "webdriverio-typescript-ts-node-mocha-chai-expect",
"repository": {
"type": "git",
"url": "git+https://github.com/e2e-boilerplate/webdriverio-typescript-ts-node-mocha-chai-expect.git"
},
"scripts": {
"lint": "npx tslint -c tslint.json './spec/*.ts'",
"pretty": "npx prettier --no-config './spec/*.ts' --write",
"test": "npx wdio"
},
"version": "1.0.0"
}