-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.85 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.85 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": "@liquidlight/playwright-framework",
"version": "2.1.0",
"description": "Liquid Light Playwright Framework",
"type": "module",
"main": "./dist/cjs/index.js",
"types": "./dist/cjs/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/cjs/index.d.ts",
"default": "./dist/cjs/index.js"
}
}
},
"files": [
"dist",
"dist/*",
"dist/**/*"
],
"homepage": "https://github.com/liquidlight/playwright-framework#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/liquidlight/playwright-framework.git"
},
"bugs": {
"url": "https://github.com/liquidlight/playwright-framework/issues"
},
"scripts": {
"clean": "rm -rf ./dist",
"build": "npm run clean && tsc -p ./tsconfig.esm.json && tsc -p ./tsconfig.cjs.json && cp src/screenshot.css dist/esm/screenshot.css && cp src/screenshot.css dist/cjs/screenshot.css && echo '{\"type\":\"commonjs\"}' > dist/cjs/package.json",
"prepack": "npm run build",
"prepare": "npm run build",
"lint": "eslint .",
"vitest": "vitest run tests/vitest/",
"vitest:watch": "vitest tests/vitest/",
"playwright": "playwright test",
"test": "npm run vitest && npm run playwright"
},
"author": "Mike Street",
"license": "ISC",
"dependencies": {
"@axe-core/playwright": "^4.10.1",
"@playwright/test": "^1.50.1",
"axe-html-reporter": "^2.2.11",
"dotenv": "^16.4.7",
"glob": "^11.0.1",
"monocart-reporter": "^2.9.15",
"yaml": "^2.7.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.21.0",
"@types/node": "^22.13.4",
"eslint": "^9.21.0",
"typescript": "^5.7.3",
"typescript-eslint": "^8.24.1",
"vitest": "^3.0.6"
}
}