-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.65 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.65 KB
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
{
"name": "vaultmail",
"version": "2.0.0",
"description": "Email archive extraction library and CLI tool. Extracts emails, attachments, and metadata from PST, OST, MBOX, and OLM files with support for large archives and multiple output formats.",
"main": "lib/index.js",
"bin": {
"vaultmail": "bin/cli.js"
},
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage --verbose",
"start": "node bin/cli.js",
"lint": "eslint lib test bin --ext .js",
"lint:fix": "eslint lib test bin --ext .js --fix",
"lint:check": "eslint lib test bin --ext .js --max-warnings 0",
"validate": "npm run lint:check && npm run test",
"prepublishOnly": "npm run validate",
"demo": "node bin/cli.js --help"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Mikej81/vaultmail.git"
},
"keywords": [
"email",
"extractor",
"vaultmail",
"pst",
"ost",
"mbox",
"olm",
"outlook",
"email-archive",
"email-migration",
"email-conversion",
"eml"
],
"author": "Michael Coleman",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Mikej81/vaultmail/issues"
},
"homepage": "https://github.com/Mikej81/vaultmail#readme",
"engines": {
"node": ">=14.0.0"
},
"files": [
"lib/",
"bin/",
"README.md",
"LICENSE"
],
"dependencies": {
"pst-extractor": "^1.3.0",
"mailparser": "^3.7.1",
"node-mbox": "^1.0.0",
"yargs": "^17.7.2",
"glob": "^10.3.10",
"olm-reader": "^1.0.0"
},
"devDependencies": {
"jest": "^29.7.0",
"eslint": "^8.57.0",
"eslint-config-node": "^4.1.0"
}
}