-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.2 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
{
"name": "imap2nas",
"version": "1.0.0",
"description": "Store emails of an IMAP account on a specified path as html or pdf.",
"main": "src/index.js",
"scripts": {
"prestart": "npm run lint",
"start": "npx ts-node src/imap2nas.ts",
"lint": "tslint -c tslint.json -p tsconfig.json --fix",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git://github.com/iCodr8/imap2nas.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/mkdirp": "^1.0.1",
"colors": "^1.4.0",
"date-fns": "^2.14.0",
"dotenv": "^8.2.0",
"html-pdf": "^2.2.0",
"http-proxy-agent": "^4.0.1",
"imap": "^0.8.19",
"mailparser": "^2.7.7",
"mkdirp": "^1.0.4",
"ncp": "^2.0.0",
"rimraf": "^3.0.2",
"rxjs": "^6.5.5",
"ts-node": "^8.10.2",
"typings": "^2.1.1"
},
"devDependencies": {
"@types/cors": "^2.8.6",
"@types/date-fns": "^2.6.0",
"@types/html-pdf": "^2.2.0",
"@types/imap": "^0.8.30",
"@types/mailparser": "^2.7.3",
"@types/ncp": "^2.0.4",
"@types/node": "^14.0.9",
"@types/rimraf": "^3.0.0",
"tslint": "^6.1.2",
"typescript": "^3.9.3"
}
}