evmtools-node 0.0.17 → 0.0.18

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.
Files changed (34) hide show
  1. package/CHANGELOG.md +55 -0
  2. package/README.md +42 -0
  3. package/dist/common/VersionInfo.d.ts +22 -0
  4. package/dist/common/VersionInfo.d.ts.map +1 -0
  5. package/dist/common/VersionInfo.js +60 -0
  6. package/dist/common/VersionInfo.js.map +1 -0
  7. package/dist/common/index.d.ts +1 -0
  8. package/dist/common/index.d.ts.map +1 -1
  9. package/dist/common/index.js +1 -0
  10. package/dist/common/index.js.map +1 -1
  11. package/dist/domain/Project.d.ts +19 -0
  12. package/dist/domain/Project.d.ts.map +1 -1
  13. package/dist/domain/Project.js +18 -0
  14. package/dist/domain/Project.js.map +1 -1
  15. package/dist/infrastructure/CsvProjectCreator.d.ts +139 -0
  16. package/dist/infrastructure/CsvProjectCreator.d.ts.map +1 -0
  17. package/dist/infrastructure/CsvProjectCreator.js +442 -0
  18. package/dist/infrastructure/CsvProjectCreator.js.map +1 -0
  19. package/dist/infrastructure/index.d.ts +1 -0
  20. package/dist/infrastructure/index.d.ts.map +1 -1
  21. package/dist/infrastructure/index.js +1 -0
  22. package/dist/infrastructure/index.js.map +1 -1
  23. package/dist/presentation/cli-pbevm-diff.d.ts +1 -0
  24. package/dist/presentation/cli-pbevm-diff.js +1 -0
  25. package/dist/presentation/cli-pbevm-diff.js.map +1 -1
  26. package/dist/presentation/cli-pbevm-show-project.d.ts +1 -0
  27. package/dist/presentation/cli-pbevm-show-project.js +1 -0
  28. package/dist/presentation/cli-pbevm-show-project.js.map +1 -1
  29. package/dist/presentation/cli-pbevm-show-pv.d.ts +1 -0
  30. package/dist/presentation/cli-pbevm-show-pv.js +1 -0
  31. package/dist/presentation/cli-pbevm-show-pv.js.map +1 -1
  32. package/dist/resource/presentation/cli-pbevm-show-resourceplan.js +0 -0
  33. package/jest.config.js +26 -0
  34. package/package.json +109 -102
package/package.json CHANGED
@@ -1,102 +1,109 @@
1
- {
2
- "name": "evmtools-node",
3
- "version": "0.0.17",
4
- "description": "このライブラリは、プライムブレインズ社で利用している「進捗管理ツール(Excel)」ファイルを読み込み、 プロジェクトの進捗状況や要員別の作業量を可視化するためのライブラリです。",
5
- "main": "dist/index.js",
6
- "types": "dist/index.d.ts",
7
- "exports": {
8
- "./common": {
9
- "types": "./dist/common/index.d.ts",
10
- "import": "./dist/common/index.js"
11
- },
12
- "./domain": {
13
- "types": "./dist/domain/index.d.ts",
14
- "import": "./dist/domain/index.js"
15
- },
16
- "./infrastructure": {
17
- "types": "./dist/infrastructure/index.d.ts",
18
- "import": "./dist/infrastructure/index.js"
19
- },
20
- "./presentation": {
21
- "types": "./dist/presentation/index.d.ts",
22
- "import": "./dist/presentation/index.js"
23
- },
24
- "./usecase": {
25
- "types": "./dist/usecase/index.d.ts",
26
- "import": "./dist/usecase/index.js"
27
- },
28
- "./logger": {
29
- "types": "./dist/logger.d.ts",
30
- "import": "./dist/logger.js"
31
- },
32
- "./project": {
33
- "types": "./dist/project/index.d.ts",
34
- "import": "./dist/project/index.js"
35
- },
36
- "./resource": {
37
- "types": "./dist/resource/index.d.ts",
38
- "import": "./dist/resource/index.js"
39
- }
40
- },
41
- "bin": {
42
- "pbevm-show-project": "./dist/presentation/cli-pbevm-show-project.js",
43
- "pbevm-diff": "./dist/presentation/cli-pbevm-diff.js",
44
- "pbevm-show-pv": "./dist/presentation/cli-pbevm-show-pv.js",
45
- "pbevm-show-resourceplan": "./dist/resource/presentation/cli-pbevm-show-resourceplan.js"
46
- },
47
- "repository": {
48
- "type": "git",
49
- "url": "git+https://github.com/masatomix/evmtools-node.git"
50
- },
51
- "keywords": [
52
- "typescript",
53
- "javascript"
54
- ],
55
- "author": "Masatomi KINO <masatomix@ki-no.org> (http://qiita.com/masatomix)",
56
- "license": "ISC",
57
- "dependencies": {
58
- "@tidyjs/tidy": "^2.5.2",
59
- "config": "^4.0.0",
60
- "excel-csv-read-write": "^0.2.6",
61
- "handlebars": "^4.7.8",
62
- "pino": "^9.7.0",
63
- "ts-node": "^10.9.2",
64
- "yargs": "^17.7.2"
65
- },
66
- "devDependencies": {
67
- "@eslint/js": "^9.28.0",
68
- "@types/config": "^3.3.5",
69
- "@types/node": "^22.15.21",
70
- "@types/xlsx-populate": "github:JanLoebel/types-xlsx-populate",
71
- "@types/yargs": "^17.0.33",
72
- "cpx": "^1.5.0",
73
- "eslint": "^9.28.0",
74
- "eslint-config-prettier": "^10.1.5",
75
- "eslint-plugin-import": "^2.31.0",
76
- "npm-run-all": "^4.1.5",
77
- "pino-pretty": "^13.0.0",
78
- "prettier": "^3.5.3",
79
- "rimraf": "^6.0.1",
80
- "typescript": "^5.8.3",
81
- "typescript-eslint": "^8.33.1"
82
- },
83
- "scripts": {
84
- "test": "echo \"Error: no test specified\" && exit 1",
85
- "lint": "eslint . --ext .ts",
86
- "lint:fix": "eslint . --ext .ts --fix",
87
- "format": "prettier --check 'src/**/*.ts'",
88
- "format:fix": "prettier --write 'src/**/*.ts'",
89
- "clean:modules": "rimraf node_modules pnpm-lock.yaml",
90
- "clean": "rimraf dist",
91
- "tsc": "tsc",
92
- "copy:assets": "cpx \"src/**/*.hbs\" dist",
93
- "build": "npm-run-all clean tsc copy:assets",
94
- "pack": "npm pack",
95
- "pbevm-show-project": "ts-node ./src/presentation/cli-pbevm-show-project --path now.xlsm",
96
- "pbevm-diff": "ts-node ./src/presentation/cli-pbevm-diff --path now.xlsm --prevPath prev.xlsm",
97
- "pbevm-show-pv": "ts-node ./src/presentation/cli-pbevm-show-pv --path now.xlsm",
98
- "cli-test": "ts-node ./src/presentation/cli-test --excelPath now.xlsm",
99
- "pbevm-summary": "ts-node ./src/presentation/cli-pbevm-summary --path now.xlsm",
100
- "pbevm-show-resourceplan": "ts-node ./src/resource/presentation/cli-pbevm-show-resourceplan"
101
- }
102
- }
1
+ {
2
+ "name": "evmtools-node",
3
+ "version": "0.0.18",
4
+ "description": "このライブラリは、プライムブレインズ社で利用している「進捗管理ツール(Excel)」ファイルを読み込み、 プロジェクトの進捗状況や要員別の作業量を可視化するためのライブラリです。",
5
+ "main": "dist/index.js",
6
+ "types": "dist/index.d.ts",
7
+ "exports": {
8
+ "./common": {
9
+ "types": "./dist/common/index.d.ts",
10
+ "import": "./dist/common/index.js"
11
+ },
12
+ "./domain": {
13
+ "types": "./dist/domain/index.d.ts",
14
+ "import": "./dist/domain/index.js"
15
+ },
16
+ "./infrastructure": {
17
+ "types": "./dist/infrastructure/index.d.ts",
18
+ "import": "./dist/infrastructure/index.js"
19
+ },
20
+ "./presentation": {
21
+ "types": "./dist/presentation/index.d.ts",
22
+ "import": "./dist/presentation/index.js"
23
+ },
24
+ "./usecase": {
25
+ "types": "./dist/usecase/index.d.ts",
26
+ "import": "./dist/usecase/index.js"
27
+ },
28
+ "./logger": {
29
+ "types": "./dist/logger.d.ts",
30
+ "import": "./dist/logger.js"
31
+ },
32
+ "./project": {
33
+ "types": "./dist/project/index.d.ts",
34
+ "import": "./dist/project/index.js"
35
+ },
36
+ "./resource": {
37
+ "types": "./dist/resource/index.d.ts",
38
+ "import": "./dist/resource/index.js"
39
+ }
40
+ },
41
+ "bin": {
42
+ "pbevm-show-project": "./dist/presentation/cli-pbevm-show-project.js",
43
+ "pbevm-diff": "./dist/presentation/cli-pbevm-diff.js",
44
+ "pbevm-show-pv": "./dist/presentation/cli-pbevm-show-pv.js",
45
+ "pbevm-show-resourceplan": "./dist/resource/presentation/cli-pbevm-show-resourceplan.js"
46
+ },
47
+ "scripts": {
48
+ "test": "jest",
49
+ "test:coverage": "jest --coverage",
50
+ "lint": "eslint . --ext .ts",
51
+ "lint:fix": "eslint . --ext .ts --fix",
52
+ "format": "prettier --check 'src/**/*.ts'",
53
+ "format:fix": "prettier --write 'src/**/*.ts'",
54
+ "clean:modules": "rimraf node_modules pnpm-lock.yaml",
55
+ "clean": "rimraf dist",
56
+ "tsc": "tsc",
57
+ "copy:assets": "cpx \"src/**/*.hbs\" dist",
58
+ "build": "npm-run-all clean tsc copy:assets",
59
+ "pack": "npm pack",
60
+ "prepublishOnly": "npm run build",
61
+ "pbevm-show-project": "ts-node ./src/presentation/cli-pbevm-show-project --path now.xlsm",
62
+ "pbevm-diff": "ts-node ./src/presentation/cli-pbevm-diff --path now.xlsm --prevPath prev.xlsm",
63
+ "pbevm-show-pv": "ts-node ./src/presentation/cli-pbevm-show-pv --path now.xlsm",
64
+ "cli-test": "ts-node ./src/presentation/cli-test --excelPath now.xlsm",
65
+ "pbevm-summary": "ts-node ./src/presentation/cli-pbevm-summary --path now.xlsm",
66
+ "pbevm-show-resourceplan": "ts-node ./src/resource/presentation/cli-pbevm-show-resourceplan"
67
+ },
68
+ "repository": {
69
+ "type": "git",
70
+ "url": "git+https://github.com/masatomix/evmtools-node.git"
71
+ },
72
+ "keywords": [
73
+ "typescript",
74
+ "javascript"
75
+ ],
76
+ "author": "Masatomi KINO <masatomix@ki-no.org> (http://qiita.com/masatomix)",
77
+ "license": "ISC",
78
+ "dependencies": {
79
+ "@tidyjs/tidy": "^2.5.2",
80
+ "config": "^4.0.0",
81
+ "excel-csv-read-write": "^0.2.6",
82
+ "handlebars": "^4.7.8",
83
+ "iconv-lite": "^0.7.1",
84
+ "pino": "^9.7.0",
85
+ "ts-node": "^10.9.2",
86
+ "yargs": "^17.7.2"
87
+ },
88
+ "devDependencies": {
89
+ "@eslint/js": "^9.28.0",
90
+ "@types/config": "^3.3.5",
91
+ "@types/iconv-lite": "^0.0.1",
92
+ "@types/jest": "^30.0.0",
93
+ "@types/node": "^22.15.21",
94
+ "@types/xlsx-populate": "github:JanLoebel/types-xlsx-populate",
95
+ "@types/yargs": "^17.0.33",
96
+ "cpx": "^1.5.0",
97
+ "eslint": "^9.28.0",
98
+ "eslint-config-prettier": "^10.1.5",
99
+ "eslint-plugin-import": "^2.31.0",
100
+ "jest": "^30.2.0",
101
+ "npm-run-all": "^4.1.5",
102
+ "pino-pretty": "^13.0.0",
103
+ "prettier": "^3.5.3",
104
+ "rimraf": "^6.0.1",
105
+ "ts-jest": "^29.4.6",
106
+ "typescript": "^5.8.3",
107
+ "typescript-eslint": "^8.33.1"
108
+ }
109
+ }