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.
- package/CHANGELOG.md +55 -0
- package/README.md +42 -0
- package/dist/common/VersionInfo.d.ts +22 -0
- package/dist/common/VersionInfo.d.ts.map +1 -0
- package/dist/common/VersionInfo.js +60 -0
- package/dist/common/VersionInfo.js.map +1 -0
- package/dist/common/index.d.ts +1 -0
- package/dist/common/index.d.ts.map +1 -1
- package/dist/common/index.js +1 -0
- package/dist/common/index.js.map +1 -1
- package/dist/domain/Project.d.ts +19 -0
- package/dist/domain/Project.d.ts.map +1 -1
- package/dist/domain/Project.js +18 -0
- package/dist/domain/Project.js.map +1 -1
- package/dist/infrastructure/CsvProjectCreator.d.ts +139 -0
- package/dist/infrastructure/CsvProjectCreator.d.ts.map +1 -0
- package/dist/infrastructure/CsvProjectCreator.js +442 -0
- package/dist/infrastructure/CsvProjectCreator.js.map +1 -0
- package/dist/infrastructure/index.d.ts +1 -0
- package/dist/infrastructure/index.d.ts.map +1 -1
- package/dist/infrastructure/index.js +1 -0
- package/dist/infrastructure/index.js.map +1 -1
- package/dist/presentation/cli-pbevm-diff.d.ts +1 -0
- package/dist/presentation/cli-pbevm-diff.js +1 -0
- package/dist/presentation/cli-pbevm-diff.js.map +1 -1
- package/dist/presentation/cli-pbevm-show-project.d.ts +1 -0
- package/dist/presentation/cli-pbevm-show-project.js +1 -0
- package/dist/presentation/cli-pbevm-show-project.js.map +1 -1
- package/dist/presentation/cli-pbevm-show-pv.d.ts +1 -0
- package/dist/presentation/cli-pbevm-show-pv.js +1 -0
- package/dist/presentation/cli-pbevm-show-pv.js.map +1 -1
- package/dist/resource/presentation/cli-pbevm-show-resourceplan.js +0 -0
- package/jest.config.js +26 -0
- package/package.json +109 -102
package/package.json
CHANGED
|
@@ -1,102 +1,109 @@
|
|
|
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
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
"
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
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
|
+
}
|