-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.24 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.24 KB
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
{
"name": "dill",
"version": "1.0.0",
"description": "AI-powered due diligence platform with document analysis powered by ActiveAgent.",
"main": "index.js",
"directories": {
"doc": "docs",
"lib": "lib",
"test": "test"
},
"scripts": {
"test": "npx playwright test",
"test:ui": "npx playwright test --ui",
"test:headed": "npx playwright test --headed",
"test:debug": "npx playwright test --debug",
"test:auth": "npx playwright test authentication.spec.ts",
"test:reports": "npx playwright test reports.spec.ts",
"test:sections": "npx playwright test sections.spec.ts",
"test:pages": "npx playwright test pages.spec.ts",
"test:ai": "npx playwright test ai-assistant.spec.ts",
"test:publishing": "npx playwright test publishing.spec.ts",
"test:users": "npx playwright test users.spec.ts",
"test:findings": "npx playwright test findings.spec.ts",
"test:sources": "npx playwright test sources.spec.ts",
"test:unauth": "npx playwright test --project=unauthenticated",
"test:report": "npx playwright show-report"
},
"keywords": [
"rails",
"playwright",
"e2e",
"testing"
],
"author": "",
"license": "ISC",
"devDependencies": {
"@playwright/test": "^1.58.1"
}
}