-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.14 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.14 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
{
"name": "@oxctl/deployment-test-utils",
"version": "1.1.4",
"description": "Configuration and utility scripts to help with deployment tests",
"license": "MIT",
"author": "University of Oxford, IT Services",
"repository": {
"url": "https://github.com/oxctl/deployment-test-utils"
},
"homepage": "https://github.com/oxctl/deployment-test-utils#readme",
"type": "module",
"main": "./dist/testUtils.cjs",
"module": "./dist/testUtils.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/testUtils.js",
"require": "./dist/testUtils.cjs"
},
"./testUtils": {
"import": "./dist/testUtils.js",
"require": "./dist/testUtils.cjs"
},
"./config": "./src/config.js"
},
"files": [
"dist/*",
"src/config.js",
"src/setup/*"
],
"scripts": {
"build": "vite build"
},
"sideEffects": false,
"peerDependencies": {
"@playwright/test": ">=1.36.0 <1.58.0",
"dotenv": "^16.3.1"
},
"peerDependencyMeta": {
"@playwright/test": {
"optional": false
}
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.3.0",
"vite": "6.4.1"
}
}