-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.8 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.8 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
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
{
"name": "@lullabot/playwright-drupal",
"version": "1.6.0",
"description": "Playwright / Drupal integration, supporting fast parallel tests and visual comparisons",
"files": [
"lib/",
"src/",
"bin/",
"settings/",
"tasks/",
"README.md"
],
"scripts": {
"build": "tsc",
"prepack": "npm run build",
"prepare": "husky || true",
"test": "npm run test:unit && npm run test:bats",
"test:unit": "vitest run",
"test:bats": "bats test/",
"docs:dev": "uvx --with-requirements docs/requirements.txt mkdocs@1.6.1 serve",
"docs:build": "uvx --with-requirements docs/requirements.txt mkdocs@1.6.1 build --strict",
"docs:preview": "uvx --with-requirements docs/requirements.txt mkdocs@1.6.1 serve site/"
},
"author": "Andrew Berry <andrew.berry@lullabot.com>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/Lullabot/playwright-drupal.git"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"bin": {
"playwright-drupal-a11y-summary": "./bin/github-a11y-summary"
},
"exports": {
".": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
},
"./config": {
"types": "./lib/config.d.ts",
"default": "./lib/config.js"
},
"./github/a11y-summary": {
"types": "./lib/github/a11y-summary.d.ts",
"default": "./lib/github/a11y-summary.js"
}
},
"dependencies": {
"@axe-core/playwright": "^4.8.5",
"@playwright/test": "^1.39.0",
"@types/node": "^24.0.0",
"shell-quote": "^1.8.3"
},
"devDependencies": {
"@commitlint/cli": "^20.4.3",
"@commitlint/config-conventional": "^20.4.3",
"@types/shell-quote": "^1.7.5",
"husky": "^9.1.7",
"tsx": "^4.21.0",
"typescript": "^5.2.2 || ^6.0.0",
"vitest": "^4.0.18"
}
}