-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.32 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
71
72
73
{
"name": "automation-extra",
"version": "4.2.0",
"description": "Driver agnostic plugin framework used by playwright-extra and puppeteer-extra.",
"homepage": "https://github.com/berstend/puppeteer-extra/tree/master/packages/automation-extra",
"repository": "berstend/puppeteer-extra",
"author": "berstend",
"license": "MIT",
"typings": "dist/index.d.ts",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"files": [
"dist"
],
"scripts": {
"clean": "rimraf dist/*",
"prebuild": "run-s clean",
"build": "run-s build:tsc build:rollup",
"build:tsc": "tsc -p tsconfig.build.json",
"build:rollup": "rollup -c rollup.config.ts",
"docs": "documentation readme --quiet --shallow --github --markdown-theme transitivebs --readme-file readme.md --section API ./src/index.ts",
"postdocs": "npx prettier --write readme.md",
"test:ts": "ava -v --config ava.config-ts.js",
"test:js": "ava -v --serial --concurrency 1 --fail-fast",
"test": "run-s test:js test:ts",
"test-ci": "run-s lint test",
"lint": "eslint src/ test/"
},
"keywords": [
"playwright",
"playwright-extra",
"puppeteer-extra",
"puppeteer",
"automation-extra"
],
"engines": {
"node": ">=8"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^16.0.0",
"@rollup/plugin-node-resolve": "^10.0.0",
"@typescript-eslint/eslint-plugin": "4",
"@typescript-eslint/parser": "4",
"ava": "3.13.0",
"documentation-markdown-themes": "13.1.2",
"eslint": "7",
"eslint-config-prettier": "6",
"eslint-config-standard-with-typescript": "19",
"eslint-plugin-import": "2",
"eslint-plugin-node": "11",
"eslint-plugin-promise": "4",
"eslint-plugin-standard": "4",
"npm-run-all": "^4.1.5",
"playwright": "1.12.2",
"rimraf": "^3.0.0",
"rollup": "^2.34.0",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-typescript2": "^0.29.0",
"ts-node": "^9.0.0",
"typescript": "4.1.2",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0"
},
"dependencies": {
"@types/debug": "^4.1.0",
"@types/puppeteer": "5.4.3",
"automation-extra-plugin": "larrypaul93/automation-extra-plugin",
"debug": "^4.1.1",
"deepmerge": "^4.2.2",
"playwright-core": "1.12.2",
"puppeteer-extra-plugin": "*"
}
}