restura-cli 0.2.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,65 @@
1
+ {
2
+ "name": "restura-cli",
3
+ "version": "0.2.14",
4
+ "description": "Restura CLI — run API collections in CI with JUnit/HTML/JSON reporters",
5
+ "license": "MIT",
6
+ "author": "dipjyotimetia",
7
+ "type": "module",
8
+ "main": "./dist/index.js",
9
+ "bin": {
10
+ "restura": "./dist/index.js"
11
+ },
12
+ "keywords": [
13
+ "api",
14
+ "rest",
15
+ "graphql",
16
+ "grpc",
17
+ "cli",
18
+ "testing",
19
+ "ci",
20
+ "junit",
21
+ "restura"
22
+ ],
23
+ "homepage": "https://github.com/dipjyotimetia/restura/tree/main/cli#readme",
24
+ "repository": {
25
+ "type": "git",
26
+ "url": "git+https://github.com/dipjyotimetia/restura.git",
27
+ "directory": "cli"
28
+ },
29
+ "bugs": {
30
+ "url": "https://github.com/dipjyotimetia/restura/issues"
31
+ },
32
+ "files": [
33
+ "dist",
34
+ "README.md"
35
+ ],
36
+ "engines": {
37
+ "node": ">=24"
38
+ },
39
+ "scripts": {
40
+ "prebuild": "node ../scripts/build-sandbox-libs.mjs",
41
+ "build": "tsup src/index.ts --format esm --target node24 --clean --tsconfig tsconfig.json",
42
+ "test": "vitest run",
43
+ "type-check": "tsc --noEmit"
44
+ },
45
+ "dependencies": {
46
+ "@faker-js/faker": "^10.4.0",
47
+ "commander": "^15.0.0",
48
+ "csv-parse": "^6.2.1",
49
+ "js-yaml": "^4.1.1",
50
+ "quickjs-emscripten": "^0.32.0",
51
+ "undici": "^8.3.0",
52
+ "uuid": "^14.0.0",
53
+ "ws": "^8.21.0",
54
+ "zod": "^4.4.3"
55
+ },
56
+ "devDependencies": {
57
+ "@types/js-yaml": "^4.0.9",
58
+ "@types/node": "^25.9.1",
59
+ "@types/uuid": "^11.0.0",
60
+ "@types/ws": "^8.18.1",
61
+ "tsup": "^8.5.1",
62
+ "typescript": "^5",
63
+ "vitest": "^4.1.7"
64
+ }
65
+ }