-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.29 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.29 KB
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
{
"name": "plotwright",
"version": "0.3.13",
"description": "A meta-framework for web testing using Mountebank and Playwright",
"bin": {
"plotwright": "./bin/plotwright.js"
},
"type": "module",
"main": "./cjs/index.js",
"types": "./cjs/index.d.ts",
"module": "./esm/index.js",
"exports": {
".": {
"import": {
"types": "./esm/index.d.ts",
"default": "./esm/index.js"
},
"require": {
"types": "./cjs/index.d.ts",
"default": "./cjs/index.js"
},
"default": "./cjs/index.js"
}
},
"scripts": {
"build": "tsc -p tsconfig.json && tsc -p tsconfig.cjs.json && tsconfig-to-dual-package"
},
"repository": {
"type": "git",
"url": "https://github.com/epodivilov/plotwright.git"
},
"keywords": [
"testing",
"playwright",
"mountebank",
"web-testing",
"meta-framework",
"page-objects"
],
"author": "Evgeniy Podivilov<evgeniy.podivilov@gmail.com>",
"license": "MIT",
"dependencies": {
"@playwright/test": "^1.34.3",
"commander": "^10.0.1",
"mountebank": "^2.8.2",
"serialize-javascript": "^6.0.1",
"typescript": "^5.0.4"
},
"devDependencies": {
"@types/node": "^20.2.3",
"@types/serialize-javascript": "^5.0.2",
"tsconfig-to-dual-package": "^1.2.0"
}
}