@gent-js/gent 0.1.10 → 0.1.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/README.md CHANGED
@@ -7,7 +7,7 @@
7
7
 
8
8
  ## Introduction
9
9
 
10
- GenT is a template-based data generator. The generated data is used as test data for software that process such data. You can define data format with a simple text file (referred to as a "template") and obtain the output as text file. It means that both input and output are non-programing interfaces. These features are particularly useful as test data in end-to-end testing situations, rather than in Unit testing.
10
+ GenT is a template-based data generator. The generated data is used as test data for software that process such data. You can define data format with a simple text file (referred to as a "template") and obtain the output as text file. It means that both input and output are non-programming interfaces. These features are particularly useful as test data in end-to-end testing situations, rather than in Unit testing.
11
11
 
12
12
  ## Features
13
13
 
@@ -153,3 +153,7 @@ in meta file, specify output path with `out` key.
153
153
  ```
154
154
 
155
155
  moreover, you can use various output method and options in meta file. see [output](./docs/output.md) for details.
156
+
157
+ ## Development
158
+
159
+ [development](./docs/developing.md)
@@ -1,6 +1,6 @@
1
1
  export declare const packageEnv: {
2
2
  readonly fullName: "@gent-js/gent";
3
3
  readonly name: "gent";
4
- readonly version: "0.1.10";
4
+ readonly version: "0.1.14";
5
5
  readonly description: "template-based data generator.";
6
6
  };
@@ -2,6 +2,6 @@
2
2
  export const packageEnv = {
3
3
  fullName: "@gent-js/gent",
4
4
  name: "gent",
5
- version: "0.1.10",
5
+ version: "0.1.14",
6
6
  description: "template-based data generator."
7
7
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gent-js/gent",
3
- "version": "0.1.10",
3
+ "version": "0.1.14",
4
4
  "description": "template-based data generator.",
5
5
  "keywords": [
6
6
  "gent"
@@ -32,27 +32,28 @@
32
32
  "build:tsc": "tsc -p tsconfig.build.json",
33
33
  "generate:dts": "tsx scripts/generateParserCstDts.ts",
34
34
  "generate:package-env": "tsx scripts/generatePackageEnv.ts",
35
+ "lint": "echo \"Info: no lint specified\" && exit 0",
35
36
  "lint:tsc": "npm run build:tsc -- --noEmit",
36
37
  "prepare": "npm run build:publish",
37
38
  "start": "tsx src/cli.ts --template sample/syslog_RFC3164(ISO_Date).template.log --count 5 --out out/out.log --debug",
38
39
  "start-json": "tsx src/cli.ts --template sample/aws_CloudWatch.json --count 5 --out out/out.log --debug",
39
40
  "start-meta": "tsx src/cli.ts --meta sample/meta.json",
40
- "test": "echo \"Error: no test specified\" && exit 1",
41
+ "test": "echo \"Info: no test specified\" && exit 0",
41
42
  "version": "npm run generate:package-env"
42
43
  },
43
44
  "dependencies": {
44
- "@faker-js/faker": "~9",
45
+ "@faker-js/faker": "~10",
45
46
  "@types/luxon": "~3",
46
47
  "chevrotain": "~11",
47
- "commander": "~12",
48
- "glob": "~11",
48
+ "commander": "~14",
49
+ "glob": "~13",
49
50
  "luxon": "~3",
50
51
  "rotating-file-stream": "~3"
51
52
  },
52
53
  "devDependencies": {
53
- "@types/node": "~22",
54
+ "@types/node": "~25",
54
55
  "prettier": "~3",
55
56
  "tsx": "~4",
56
- "typescript": "~5.6"
57
+ "typescript": "~5.9"
57
58
  }
58
59
  }