-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
59 lines (59 loc) · 1.57 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
58
59
{
"name": "@lariat/playwright",
"version": "0.0.0-semantically-released",
"description": "Page object framework for end-to-end testing in Playwright.",
"publishConfig": {
"access": "public"
},
"author": "Lariat Team",
"license": "ISC",
"packageManager": "yarn@4.0.2",
"repository": "github:lariat-js/playwright",
"homepage": "https://github.com/lariat-js/playwright#readme",
"bugs": {
"url": "https://github.com/lariat-js/playwright/issues"
},
"keywords": [
"lariat",
"page-object-model",
"end-to-end-testing",
"playwright",
"playwright-test"
],
"type": "module",
"types": "./dist/index.d.ts",
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"files": [
"dist"
],
"scripts": {
"lint": "eslint .",
"test": "playwright test",
"build": "tsup ./src/index.ts --format cjs,esm --dts",
"release": "./scripts/release.sh"
},
"peerDependencies": {
"@playwright/test": ">=1.28.0"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/eslint-parser": "^7.19.1",
"@mskelton/semantic-release-config": "^1.0.1",
"@playwright/test": "^1.30.0",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"eslint": "^8.32.0",
"eslint-config-widen": "^1.1.0",
"eslint-plugin-playwright": "^0.12.0",
"eslint-plugin-sort": "^2.4.0",
"eslint-plugin-widen": "^1.0.0",
"prettier": "^2.8.3",
"semantic-release": "^23.0.2",
"tsup": "^6.5.0",
"typescript": "^4.9.4"
}
}