-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.79 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
{
"author": "Girma Nigusse <[email protected]>",
"bugs": {
"url": "https://github.com/e2e-boilerplate/wd-typescript-ts-node-webdriver-manager-jasmine-expect/issues"
},
"dependencies": {
"chai-as-promised": "7.1.1",
"jasmine": "3.8.0",
"ts-node": "9.1.1",
"typescript": "4.3.5",
"wd": "1.14.0",
"webdriver-manager": "12.1.8"
},
"description": "WD end-to-end test automation boilerplate. Using TypeScript, ts-node, Webdriver-Manager, Jasmine and Expect.",
"devDependencies": {
"@types/jasmine": "3.8.1",
"@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/wd-typescript-ts-node-webdriver-manager-jasmine-expect#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged --allow-empty"
}
},
"keywords": [
"expect",
"jasmine",
"ts-node",
"typescript",
"wd",
"wd automation",
"wd boilerplate",
"wd example",
"webdriver manager",
"e2e",
"e2e tests",
"boilerplate",
"integration test",
"test automation",
"javascript"
],
"license": "MIT",
"lint-staged": {
"*.{js,ts,json,md}": [
"tslint --fix",
"prettier --write"
]
},
"name": "wd-typescript-ts-node-webdriver-manager-jasmine-expect",
"repository": {
"type": "git",
"url": "git+https://github.com/e2e-boilerplate/wd-typescript-ts-node-webdriver-manager-jasmine-expect.git"
},
"scripts": {
"lint": "tslint -c tslint.json 'spec/*.ts'",
"start:webdriver": "npx webdriver-manager start",
"test": "npx jasmine",
"update:webdriver": "npx webdriver-manager update --gecko false"
},
"version": "1.0.0"
}