-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 920 Bytes
/
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
{
"name": "email-scraper",
"version": "1.1.2",
"description": "Scrapes e-mail from a configured email account. This can be used to programmatically obtain, for example, billing information.",
"main": "index.js",
"scripts": {
"test": "make test",
"run": "node ./src/index.js",
"run-debug": "node --inspect --debug-brk ./src/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/treelogic-swe/email-scraper.git"
},
"keywords": [
"email",
"e-mail",
"scraper",
"e-mail",
"scraper",
"billing"
],
"author": "Chris M. Balz",
"license": "MIT",
"dependencies": {
"babyparse": "*",
"command-line-args": "*",
"hasha": "*",
"lodash": "*",
"mailx": "*",
"mysql2": "*"
},
"devDependencies": {
"chalk": "*",
"eslint": "*",
"pop3-n3": "*",
"changelog": "*"
},
"engines": {
"node": ">=6.3.0"
}
}