forked from epfromer/pst-extractor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.56 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
{
"name": "pst-extractor",
"version": "1.3.3",
"description": "Extract objects from MS Outlook/Exchange PST files",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc",
"test": "nyc --reporter=html mocha --opts mocha.opts",
"readme": "node ./node_modules/.bin/node-readme",
"prepare": "npm run build"
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"exclude": [
"**/*.d.ts",
"src/index.ts",
"src/app/Log.class.ts",
"coverage/prettify.js",
"coverage/sorter.js"
],
"reporter": [
"html"
],
"all": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/epfromer/pst-extractor.git"
},
"keywords": [],
"author": "Ed Pfromer (epfromer@gmail.com)",
"license": "(Apache-2.0 OR GPL-3.0)",
"bugs": {
"url": "https://github.com/epfromer/pst-extractor/issues"
},
"homepage": "https://github.com/epfromer/pst-extractor#readme",
"devDependencies": {
"@types/chai": "4.1.2",
"@types/debug": "0.0.30",
"@types/long": "^4.0.0",
"@types/mocha": "^5.0.0",
"@types/node": "^10.1.2",
"@types/winston": "^2.3.9",
"chai": "^4.1.2",
"chai-datetime": "^1.5.0",
"debug": "^3.1.0",
"mocha": "^5.0.5",
"node-readme": "^0.1.9",
"nyc": "^11.6.0",
"rimraf": "^2.6.2",
"source-map-support": "^0.5.4",
"supports-color": "^5.3.0",
"ts-node": "^6.0.3",
"typescript": "^2.8.1"
},
"dependencies": {
"long": "^4.0.0",
"uuid-parse": "^1.0.0"
}
}