-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.32 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.32 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "@raffaelecarelle/shopware-acceptance-fixture-loader",
"version": "1.1.7",
"description": "A TypeScript library for Shopware to create test data in Playwright using YAML fixtures",
"type": "module",
"exports": {
".": {
"default": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"./package.json": "./package.json"
},
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"typesVersions": {
">=5.0": {
".": [
"./dist/index.d.ts"
],
"locale/*": [
"./dist/locale/*.d.ts"
]
}
},
"files": [
"CHANGELOG.md",
"dist",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/raffaelecarelle/shopware-acceptance-fixture-loader"
},
"scripts": {
"ts-check": "tsc",
"build:clean": "git clean -fX dist",
"build:code": "tsdown",
"build": "npm run build:code",
"prepublishOnly": "npm run build",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "eslint . --ext .ts,.tsx --fix"
},
"keywords": [
"shopware",
"playwright",
"testing",
"fixtures",
"yaml",
"test-data",
"e2e"
],
"author": "Raffaele Carelle",
"license": "ISC",
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^24.5.2",
"@typescript-eslint/eslint-plugin": "^8.44.1",
"@typescript-eslint/parser": "^8.44.1",
"eslint": "^9.36.0",
"eslint-plugin-playwright": "^2.2.2",
"jest": "^30.1.3",
"ts-jest": "^29.1.2",
"tsdown": "^0.16.1",
"typescript": "^5.9.2"
},
"dependencies": {
"@faker-js/faker": "^10.0.0",
"@playwright/test": "^1.55.1",
"@shopware-ag/acceptance-test-suite": "^12.1.1",
"@shopware/api-client": "^1.3.0",
"@types/js-yaml": "^4.0.9",
"dotenv": "^17.2.2",
"globals": "^16.4.0",
"js-yaml": "^4.1.0"
},
"engines": {
"node": "^20.0 || ^22 || ^24"
}
}