forked from umbraco/Umbraco.Playwright.Testhelpers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 978 Bytes
/
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
{
"name": "@umbraco/playwright-testhelpers",
"version": "1.0.10",
"description": "Test helpers for making playwright tests for Umbraco solutions",
"main": "dist/lib/index.js",
"files": ["dist/**/*"],
"types": "dist/lib/index.d.ts",
"scripts": {
"test": "npx playwright test",
"headed": "npx playwright test --headed",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/umbraco/umbraco-playwright-testhelpers.git"
},
"keywords": [
"umbraco",
"playwright",
"helpers",
"acceptance-test",
"e2e",
"test",
"playwright-plugin"
],
"author": "Umbraco",
"license": "MIT",
"devDependencies": {
"@playwright/test": "^1.19.2",
"typescript": "^4.8.3",
"tslib": "^2.4.0"
},
"dependencies": {
"@umbraco/json-models-builders": "^1.0.0",
"camelize": "^1.0.0",
"faker": "^4.1.0",
"form-data": "^4.0.0",
"node-fetch": "^2.6.7",
"xhr2": "^0.2.1"
}
}