-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.11 KB
/
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
42
43
44
{
"name": "@liquidlight/playwright-framework",
"version": "1.1.0",
"description": "Liquid Light Playwright Framework",
"main": "./dist/index.js",
"type": "module",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"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": {
"build": "tsc",
"lint": "eslint .",
"prepare": "npm run build",
"pack": "npm pack"
},
"author": "Mike Street",
"license": "ISC",
"dependencies": {
"@axe-core/playwright": "^4.8",
"@playwright/test": "^1.40",
"axe-html-reporter": "^2.2",
"dotenv": "^16.4",
"glob": "^10.3",
"monocart-reporter": "^2.4",
"yaml": "^2.3"
},
"devDependencies": {
"@types/node": "^20.10",
"@typescript-eslint/eslint-plugin": "^6.14",
"@typescript-eslint/parser": "^6.14",
"eslint": "^8.55",
"typescript": "^5.3"
}
}