-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.1 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.1 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
55
56
57
{
"name": "@harperfast/integration-testing",
"version": "0.4.0",
"type": "module",
"description": "Integration testing utilities for Harper-based projects. Provides Harper instance lifecycle management, loopback address pooling, and a test runner script.",
"license": "Apache-2.0",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"bin": {
"harper-integration-test-run": "dist/run.js",
"harper-integration-test-setup-loopback": "scripts/setup-loopback.sh"
},
"files": [
"dist",
"scripts",
"api.md",
"README.md"
],
"scripts": {
"check": "tsc",
"build": "tsc -p tsconfig.build.json"
},
"engines": {
"node": ">=20"
},
"devEngines": {
"runtime": {
"name": "node",
"version": ">=22",
"onFail": "error"
},
"packageManager": {
"name": "npm",
"onFail": "error"
}
},
"dependencies": {
"tar-fs": "3.1.2"
},
"devDependencies": {
"@types/node": "22.0.0",
"@types/tar-fs": "2.0.4",
"typescript": "6.0.2"
},
"peerDependencies": {
"harper": "^5.0.0"
},
"peerDependenciesMeta": {
"harper": {
"optional": false
}
}
}