-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 1.96 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 1.96 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
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
{
"name": "@harperfast/integration-testing",
"version": "0.7.1",
"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",
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/HarperFast/integration-testing",
"bugs": {
"url": "https://github.com/HarperFast/integration-testing/issues",
"email": "support@harperdb.io"
},
"author": {
"name": "Harper",
"email": "support@harperdb.io"
},
"repository": {
"type": "git",
"url": "https://github.com/HarperFast/integration-testing"
},
"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",
"test": "node --test \"test/**/*.test.ts\"",
"prepack": "npm run build"
},
"engines": {
"node": ">=20"
},
"devEngines": {
"runtime": {
"name": "node",
"version": ">=22.18.0",
"onFail": "error"
},
"packageManager": {
"name": "npm",
"onFail": "error"
}
},
"dependencies": {
"tar-fs": "3.1.2"
},
"devDependencies": {
"@commitlint/cli": "^20.0.0",
"@commitlint/config-conventional": "^20.0.0",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.2",
"@semantic-release/npm": "^13.1.1",
"@semantic-release/release-notes-generator": "^14.1.0",
"@types/node": "22.0.0",
"@types/tar-fs": "2.0.4",
"conventional-changelog-conventionalcommits": "^9.1.0",
"semantic-release": "^25.0.2",
"typescript": "6.0.2"
},
"peerDependencies": {
"harper": "^5.0.0"
},
"peerDependenciesMeta": {
"harper": {
"optional": false
}
}
}