-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
57 lines (57 loc) · 1.32 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
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "@shopware-ag/acceptance-test-suite",
"version": "5.5.0",
"description": "Shopware Acceptance Test Suite",
"author": "shopware AG",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/shopware/acceptance-test-suite.git"
},
"keywords": [
"shopware",
"testing",
"playwright",
"integration",
"fixtures",
"test-data"
],
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs",
"default": "./dist/index.mjs"
}
},
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"lint": "eslint . --ext .ts",
"lint:fix": "npm run lint -- --fix",
"build": "npx unbuild",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@axe-core/playwright": "4.9.1",
"@playwright/test": "^1.45.0",
"@shopware/api-client": "0.5.0",
"axe-html-reporter": "2.2.3",
"image-js": "0.35.5",
"uuid": "9.0.1"
},
"devDependencies": {
"@types/node": "20.14.8",
"@types/uuid": "9.0.8",
"@typescript-eslint/eslint-plugin": "7.8.0",
"@typescript-eslint/parser": "7.8.0",
"eslint": "8.56.0",
"eslint-plugin-playwright": "1.6.2",
"ts-node": "10.9.2",
"typescript": "5.4.5",
"unbuild": "2.0.0"
}
}