-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
108 lines (108 loc) · 2.73 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "wrightplay",
"description": "playwright, but unit test",
"version": "0.1.0",
"type": "module",
"main": "./build/client/api.js",
"types": "./build/client/api.d.ts",
"exports": {
".": "./build/client/api.js",
"./cli": "./build/cli/api.js",
"./node": "./build/server/api.js",
"./package.json": "./package.json"
},
"typesVersions": {
"<4.7": {
".": [
"./build/client/api.d.ts"
],
"cli": [
"./build/cli/api.d.ts"
],
"node": [
"./build/server/api.d.ts"
]
}
},
"bin": {
"wrightplay": "./build/cli/index.js"
},
"browser": {
"mocha": "mocha/mocha.js",
"process": "process/browser.js",
"jest-message-util": false,
"jest-util": false
},
"author": "PaperStrike",
"repository": "github:PaperStrike/wrightplay",
"license": "ISC",
"scripts": {
"build": "tsc -b",
"lint": "eslint .",
"prepare": "npm run build",
"cli": "tsx src/cli/index.ts",
"test-entry": "npm run cli -- ww=test/entry/worker.ts test/entry/*.test.*",
"test-handle": "npm run cli -- test/handle/*.test.*",
"test-route": "npm run cli -- test/route/*.test.*",
"test": "npm run cli -- ww=test/entry/worker.ts test/**/*.test.ts !**/third-party",
"test-chromium": "npm test -- --browser chromium",
"test-firefox": "npm test -- --browser firefox",
"test-webkit": "npm test -- --browser webkit",
"report-coverage": "c8 -a report"
},
"files": [
"build",
"static",
"src",
"!*.tsbuildinfo"
],
"keywords": [
"test",
"unit",
"mock",
"testing",
"playwright",
"coverage",
"v8"
],
"dependencies": {
"@commander-js/extra-typings": "^11.1.0",
"chalk": "^5.3.0",
"commander": "^11.1.0",
"esbuild": "~0.19.12",
"get-port": "^7.0.0",
"glob-parent": "^6.0.2",
"globby": "^14.0.0",
"jiti": "^1.21.0",
"lilconfig": "^3.0.0",
"mrmime": "^2.0.0",
"playwright": "^1.41.1",
"sirv": "^2.0.4",
"ws": "^8.16.0"
},
"devDependencies": {
"@types/glob-parent": "^5.1.3",
"@types/mocha": "^10.0.6",
"@types/node": "^20.11.6",
"@types/tape": "^5.6.4",
"@types/ws": "^8.5.10",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"@typescript/lib-dom": "npm:@types/[email protected]",
"c8": "^9.1.0",
"eslint": "^8.56.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-ts-parser-service": "^0.2.0",
"eslint-plugin-import": "^2.29.1",
"events": "^3.3.0",
"expect": "^28.1.3",
"mocha": "^10.2.0",
"path": "^0.12.7",
"stream": "^0.0.2",
"tape": "^5.7.3",
"tsx": "^4.7.0",
"typescript": "^5.3.3",
"uvu": "^0.5.6",
"zora": "^5.2.0"
}
}