-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 995 Bytes
/
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
{
"name": "playwright-browser-unit",
"version": "0.0.2",
"description": "A package to run unit tests in the browser using Playwright",
"repository": {
"type": "git",
"url": "https://github.com/matiassimon/playwright-browser-unit.git"
},
"exports": {
".": "./dist/index.js",
"./browser": "./dist/browser/index.js",
"./global-setup": "./dist/global-setup.js"
},
"scripts": {
"build": "tsc && cp browser-unit.test.in dist/",
"prepack": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"unit",
"test",
"browser",
"playwright"
],
"files": [
"dist",
"package.json",
"LICENCE"
],
"author": "Matias Simonetto",
"license": "ISC",
"dependencies": {
"@playwright/test": "^1.42.1",
"@storybook/expect": "^28.1.3-5",
"mustache": "^4.2.0",
"source-map-js": "^1.2.0"
},
"devDependencies": {
"@types/mustache": "^4.2.5",
"@types/node": "^20.12.3"
}
}