-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
95 lines (95 loc) · 2.43 KB
/
package.json
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
{
"name": "pst-extractor",
"version": "1.11.0",
"description": "Extract objects from MS Outlook/Exchange PST files",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=10"
},
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc",
"test": "run-s test:unit test:build",
"test:build": "run-s build",
"test:unit": "cross-env CI=1 jest --coverage --reporters=default --reporters=jest-junit"
},
"repository": "epfromer/pst-extractor",
"author": "Ed Pfromer (epfromer@gmail.com)",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@types/debug": "4.1.12",
"@types/jest": "^29.5.14",
"@types/long": "^5.0.0",
"@types/node": "^22.10.7",
"@typescript-eslint/eslint-plugin": "^8.20.0",
"@typescript-eslint/parser": "^8.20.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^29.7.0",
"cross-env": "^7.0.3",
"debug": "^4.4.0",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.2.2",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-standard": "^5.0.0",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
},
"dependencies": {
"iconv-lite": "^0.6.3",
"long": "^5.2.4",
"uuid-parse": "^1.1.0"
},
"eslintConfig": {
"extends": [
"plugin:@typescript-eslint/recommended",
"prettier/@typescript-eslint",
"plugin:prettier/recommended"
],
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
}
},
"prettier": {
"semi": false,
"singleQuote": true,
"endOfLine": "auto"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-typescript"
],
"plugins": [
"@babel/plugin-proposal-class-properties"
]
},
"jest": {
"testMatch": [
"<rootDir>/src/__tests__/**/*.spec.ts"
],
"collectCoverageFrom": [
"<rootDir>/src/**/*.ts",
"!<rootDir>/src/__tests__/**/*.*"
],
"coverageReporters": [
"text",
"cobertura"
]
}
}