-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.11 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
{
"name": "@eatonfyi/mbox-streamer",
"version": "1.0.0",
"description": "Read and parse UNIX Mbox files via stream transforms.",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.cts",
"exports": {
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
},
"files": [
"/dist",
"README.md"
],
"scripts": {
"build": "pkgroll",
"clean": "shx rm -rf dist",
"prepare": "npm run clean && npm run build",
"test": "ava"
},
"ava": {
"extensions": {
"ts": "module"
},
"nodeArguments": [
"--import=tsimp"
]
},
"author": "eaton",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.11.30",
"ava": "^6.1.2",
"pkgroll": "^2.0.2",
"shx": "^0.3.4",
"tsimp": "^2.0.11",
"typescript": "^5.4.3"
},
"dependencies": {
"@types/mailparser": "^3.4.4",
"mailparser": "^3.6.9",
"p-wait-for": "^5.0.2",
"tiny-typed-emitter": "^2.1.0"
}
}