@hiraokahypertools/pst-extractor 0.2.0-alpha.2 → 0.3.0-alpha.1
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 +7 -64
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hiraokahypertools/pst-extractor",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0-alpha.1",
|
|
4
4
|
"description": "Extract objects from MS Outlook/Exchange PST files",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": {
|
|
7
|
+
"types": "./dist/index.d.ts",
|
|
7
8
|
"import": "./dist/index.js",
|
|
8
|
-
"
|
|
9
|
+
"browser": "./dist/index.js"
|
|
9
10
|
}
|
|
10
11
|
},
|
|
11
|
-
"main": "dist/index.js",
|
|
12
12
|
"types": "dist/index.d.ts",
|
|
13
13
|
"type": "module",
|
|
14
14
|
"engines": {
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"build": "tsc",
|
|
20
20
|
"test": "run-s test:unit test:build",
|
|
21
21
|
"test:build": "run-s build",
|
|
22
|
-
"test:unit": "cross-env CI=1 jest --coverage --reporters=default --reporters=jest-junit"
|
|
22
|
+
"test:unit": "cross-env CI=1 NODE_OPTIONS=--experimental-vm-modules jest --coverage --reporters=default --reporters=jest-junit"
|
|
23
23
|
},
|
|
24
24
|
"repository": {
|
|
25
25
|
"type": "git",
|
|
@@ -34,34 +34,18 @@
|
|
|
34
34
|
],
|
|
35
35
|
"license": "MIT",
|
|
36
36
|
"devDependencies": {
|
|
37
|
-
"@babel/core": "^7.29.0",
|
|
38
|
-
"@babel/plugin-proposal-class-properties": "^7.18.6",
|
|
39
|
-
"@babel/preset-env": "^7.29.0",
|
|
40
|
-
"@babel/preset-typescript": "^7.28.5",
|
|
41
37
|
"@types/debug": "4.1.7",
|
|
42
|
-
"@types/jest": "^
|
|
38
|
+
"@types/jest": "^30.0.0",
|
|
43
39
|
"@types/long": "^4.0.1",
|
|
44
40
|
"@types/node": "^25.3.2",
|
|
45
41
|
"@types/pako": "^2.0.0",
|
|
46
|
-
"@typescript-eslint/eslint-plugin": "^5.18.0",
|
|
47
|
-
"@typescript-eslint/parser": "^5.18.0",
|
|
48
|
-
"babel-jest": "^30.2.0",
|
|
49
42
|
"cross-env": "^7.0.3",
|
|
50
|
-
"debug": "^4.3.4",
|
|
51
|
-
"eslint": "^8.12.0",
|
|
52
|
-
"eslint-config-prettier": "^8.5.0",
|
|
53
|
-
"eslint-config-standard": "^16.0.3",
|
|
54
|
-
"eslint-plugin-import": "^2.26.0",
|
|
55
|
-
"eslint-plugin-node": "^11.1.0",
|
|
56
|
-
"eslint-plugin-prettier": "^4.0.0",
|
|
57
|
-
"eslint-plugin-promise": "^6.0.0",
|
|
58
|
-
"eslint-plugin-standard": "^5.0.0",
|
|
59
43
|
"jest": "^30.2.0",
|
|
60
44
|
"jest-junit": "^16.0.0",
|
|
61
45
|
"npm-run-all": "^4.1.5",
|
|
62
|
-
"prettier": "^2.6.2",
|
|
63
46
|
"rimraf": "^3.0.2",
|
|
64
47
|
"source-map-support": "^0.5.21",
|
|
48
|
+
"ts-jest": "^29.4.6",
|
|
65
49
|
"ts-node": "^10.9.2",
|
|
66
50
|
"typedoc": "^0.28.17",
|
|
67
51
|
"typescript": "^5.9.3"
|
|
@@ -70,48 +54,7 @@
|
|
|
70
54
|
"long": "^5.3.2",
|
|
71
55
|
"pako": "^2.1.0"
|
|
72
56
|
},
|
|
73
|
-
"eslintConfig": {
|
|
74
|
-
"extends": [
|
|
75
|
-
"plugin:@typescript-eslint/recommended",
|
|
76
|
-
"prettier/@typescript-eslint",
|
|
77
|
-
"plugin:prettier/recommended"
|
|
78
|
-
],
|
|
79
|
-
"parserOptions": {
|
|
80
|
-
"ecmaVersion": 2018,
|
|
81
|
-
"sourceType": "module"
|
|
82
|
-
}
|
|
83
|
-
},
|
|
84
|
-
"prettier": {
|
|
85
|
-
"semi": false,
|
|
86
|
-
"singleQuote": true,
|
|
87
|
-
"endOfLine": "auto"
|
|
88
|
-
},
|
|
89
|
-
"babel": {
|
|
90
|
-
"presets": [
|
|
91
|
-
"@babel/preset-env",
|
|
92
|
-
"@babel/preset-typescript"
|
|
93
|
-
],
|
|
94
|
-
"plugins": [
|
|
95
|
-
"@babel/plugin-proposal-class-properties"
|
|
96
|
-
]
|
|
97
|
-
},
|
|
98
|
-
"jest": {
|
|
99
|
-
"testMatch": [
|
|
100
|
-
"<rootDir>/src/__tests__/**/*.spec.ts"
|
|
101
|
-
],
|
|
102
|
-
"moduleNameMapper": {
|
|
103
|
-
"^(\\.\\.?\\/.+)\\.js$": "$1"
|
|
104
|
-
},
|
|
105
|
-
"collectCoverageFrom": [
|
|
106
|
-
"<rootDir>/src/**/*.ts",
|
|
107
|
-
"!<rootDir>/src/__tests__/**/*.*"
|
|
108
|
-
],
|
|
109
|
-
"coverageReporters": [
|
|
110
|
-
"text",
|
|
111
|
-
"cobertura"
|
|
112
|
-
]
|
|
113
|
-
},
|
|
114
57
|
"files": [
|
|
115
58
|
"dist"
|
|
116
59
|
]
|
|
117
|
-
}
|
|
60
|
+
}
|