forked from HiraokaHyperTools/msgreader
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 937 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 937 Bytes
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
{
"name": "@alisarioglu/msgreader",
"version": "1.22.3",
"description": "Outlook Item File (.msg) reader in JavaScript Npm Module",
"type": "module",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"private": false,
"scripts": {
"build": "tsc",
"test": "npm run mocha test/ test2/",
"prepare": "npm run build && npm run test",
"mocha": "set NODE_ENV=test && mocha",
"dr": "npm publish --dry-run"
},
"author": "kenjiuno",
"repository": "github:alisarioglu/msgreader",
"license": "ISC",
"devDependencies": {
"@types/node": "^22.10.3",
"commander": "^13.0.0",
"mocha": "^11.0.1",
"temp": "^0.9.4",
"typedoc": "^0.27.6",
"typedoc-plugin-rename-defaults": "^0.7.2",
"typescript": "^5.7.2"
},
"dependencies": {
"@kenjiuno/decompressrtf": "^0.1.3"
},
"engines": {
"node": ">= 10"
},
"files": [
"lib"
]
}