-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 986 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 986 Bytes
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
{
"name": "flowback-interface-testing",
"version": "0.0.1",
"description": "Playwright interface testing for Flowback",
"keywords": [
"testing",
"playwright",
"flowback",
"integration-tests",
"back-to-back-tests"
],
"homepage": "https://github.com/kattenelvis/flowback-interface-testing#readme",
"bugs": {
"url": "https://github.com/kattenelvis/flowback-interface-testing/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kattenelvis/flowback-interface-testing.git"
},
"license": "MIT",
"author": "emil",
"type": "commonjs",
"main": "index.js",
"scripts": {
"test": "npx playwright test . --headed"
},
"dependencies": {
"playwright": "^1.57.0"
},
"devDependencies": {
"@playwright/test": "^1.57.0",
"@types/node": "^25.0.3",
"dotenv": "^17.2.3",
"prettier": "^3.7.4"
}
}