-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
70 lines (70 loc) · 1.91 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
60
61
62
63
64
65
66
67
68
69
70
{
"name": "playwright-watch",
"version": "1.3.22",
"main": "src/bin/playwright-watch.js",
"description": "🙈🐵 Run Playwright in watch mode",
"keywords": [
"playwright",
"playwright watch",
"watch mode",
"automation",
"chrome",
"puppeteer",
"test",
"end 2 end"
],
"author": "yokiyuqian@gmail.com <yokiyuqian@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/iamyoki/playwright-watch.git"
},
"bugs": "https://github.com/iamyoki/playwright-watch/issues",
"license": "MIT",
"bin": "dist/bin/playwright-watch.js",
"files": [
"dist"
],
"scripts": {
"prepare": "husky install",
"start": "yarn run build --watch",
"build": "rimraf dist && babel src --out-dir dist --ignore '**/__tests__'",
"test": "jest",
"test:coverage": "jest --coverage",
"lint": "eslint --color --fix --ext .js",
"commit": "git add . && yarn git-cz",
"prerelease": "yarn test && yarn lint --fix && yarn format",
"release": "release-it"
},
"dependencies": {
"chokidar": "^3.5.2",
"cosmiconfig": "^7.0.1",
"yargs": "^17.1.1"
},
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.6",
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@release-it/conventional-changelog": "^3.3.0",
"@types/jest": "^27.0.1",
"commitlint": "^13.1.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-promise": "^5.1.0",
"git-cz": "^4.7.6",
"husky": "^7.0.0",
"jest": "^27.1.0",
"lint-staged": "^11.1.2",
"prettier": "^2.3.2",
"release-it": "^14.11.5",
"rimraf": "^3.0.2"
},
"peerDependencies": {
"playwright": ">=1"
}
}