-
-
Notifications
You must be signed in to change notification settings - Fork 744
/
package.json
66 lines (66 loc) · 2 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
{
"name": "playwright-extra",
"version": "4.2.0",
"description": "Teach playwright new tricks through plugins.",
"repository": "berstend/puppeteer-extra",
"homepage": "https://github.com/berstend/puppeteer-extra/tree/master/packages/playwright-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 --module commonjs",
"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: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",
"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.8.0",
"rimraf": "^3.0.0",
"rollup": "^2.34.0",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-typescript2": "^0.29.0",
"ts-node": "9",
"typescript": "4.1.2"
},
"dependencies": {
"automation-extra": "^4.1.0",
"playwright-core": "1.8.0"
}
}