forked from qqilihq/partial-emlx-converter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.86 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
{
"name": "partial-emlx-converter",
"description": "Convert .emlx and .partial.emlx files created by Apple’s Mail.app to .eml",
"author": "Philipp Katz <[email protected]>",
"version": "3.0.4",
"main": "dist/converter.js",
"types": "dist/converter.d.ts",
"bin": {
"partial-emlx-converter": "bin/partial-emlx-converter"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/qqilihq/partial-emlx-converter/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/qqilihq/partial-emlx-converter.git"
},
"keywords": [
"eml",
"eml-files",
"emlx",
"partialemlx",
"macos",
"mail.app"
],
"scripts": {
"build": "tsc --project tsconfig.build.json",
"test": "nyc mocha",
"lint": "eslint --ext .ts ./src ./test",
"clean": "rimraf ./.nyc_output ./coverage ./dist",
"preversion": "run-s clean lint test build",
"postinstall": "patch-package"
},
"dependencies": {
"debug": "^4.3.3",
"glob": "^7.2.0",
"mailsplit": "^5.4.0",
"patch-package": "^6.4.7",
"postinstall-postinstall": "^2.1.0",
"progress": "^2.0.3"
},
"devDependencies": {
"@types/debug": "^4.1.7",
"@types/expect.js": "^0.3.29",
"@types/glob": "^7.2.0",
"@types/memorystream": "^0.3.0",
"@types/mocha": "^10.0.1",
"@types/node": "^10",
"@types/progress": "^2.0.5",
"@typescript-eslint/eslint-plugin": "^5.8.1",
"@typescript-eslint/parser": "^5.8.1",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"expect.js": "^0.3.1",
"memorystream": "^0.3.1",
"mocha": "^10.2.0",
"mocha-junit-reporter": "^2.2.0",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
},
"engines": {
"node": ">=10"
}
}