-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 989 Bytes
/
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
{
"name": "playwright-pom-materials",
"version": "0.1.9",
"description": "Playwright POM materials",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"scripts": {
"build": "run-s compile lint",
"clean": "rm -rf lib",
"compile": "tsc",
"lint": "eslint . --cache --cache-location tmp/eslint-cache",
"prettier": "prettier --write '**/*.ts'",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"playwright",
"E2E",
"test",
"POM"
],
"author": "Groovenauts, Inc.",
"license": "MIT",
"devDependencies": {
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.1",
"typescript": "^4.9.4"
},
"dependencies": {
"@playwright/test": "^1.35.1"
}
}