-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
48 lines (48 loc) · 1.38 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
{
"name": "@prestashop-core/ui-testing",
"version": "0.0.2",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": "./dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"// ESLint": "To run ESLint commands",
"lint:fix": "eslint --fix --ignore-path .gitignore .",
"lint": "eslint --ignore-path .gitignore .",
"build": "tsc && tsc-alias"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PrestaShop/ui-testing-library.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/PrestaShop/ui-testing-library/issues"
},
"homepage": "https://github.com/PrestaShop/ui-testing-library#readme",
"dependencies": {
"@faker-js/faker": "^8.3.1",
"@playwright/test": "^1.40.1",
"semver": "^7.5.4"
},
"devDependencies": {
"@types/node": "^20.10.7",
"@types/semver": "^7.5.6",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"babel-eslint": "^10.1.0",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-deprecation": "^2.0.0",
"eslint-plugin-html": "^7.1.0",
"eslint-plugin-import": "^2.29.1",
"tsc-alias": "^1.8.8",
"typescript": "^5.3.3"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}