-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
55 lines (55 loc) · 1.06 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
{
"name": "playwright-start",
"version": "0.0.0-semantic-release",
"description": "Start a Playwright browser server via CLI",
"keywords": [
"playwright",
"cli",
"start",
"browser",
"server"
],
"license": "MIT",
"repository": "privatenumber/playwright-start",
"funding": "https://github.com/privatenumber/playwright-start?sponsor=1",
"author": {
"name": "Hiroki Osame",
"email": "hiroki.osame@gmail.com"
},
"files": [
"dist",
"bin"
],
"main": "dist/connect.js",
"bin": "bin/playwright-start.js",
"scripts": {
"lint": "eslint .",
"build": "tsc"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts}": "eslint"
},
"peerDependencies": {
"playwright": "^1.10.0"
},
"dependencies": {
"cac": "^6.7.1",
"exit-hook": "^2.2.0"
},
"devDependencies": {
"@pvtnbr/eslint-config-typescript": "^0.1.14",
"eslint": "^7.20.0",
"husky": "^4.3.8",
"lint-staged": "^10.5.4",
"playwright": "^1.10.0",
"typescript": "^4.2.4"
},
"eslintConfig": {
"extends": "@pvtnbr/eslint-config-typescript"
}
}