-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
55 lines (55 loc) · 1.58 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
{
"name": "ehlo",
"version": "0.0.9",
"description": "SMTP server to rest",
"main": "ehlo.js",
"directories": {
"test": "test"
},
"bin": {
"ehlo": "cli.js"
},
"scripts": {
"start": "./cli.js",
"test": "NODE_ENV=test ./node_modules/.bin/mocha --colors -R spec --bail",
"cover": "./node_modules/istanbul/lib/cli.js cover --report html ./node_modules/mocha/bin/_mocha -- test/*.js -R spec -t 5000",
"codacy": "./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/codacy-coverage/bin/codacy-coverage.js",
"coveralls": "./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha --report lcovonly -- test/*.js -R spec -t 5000 && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/ehlo-io/ehlo"
},
"keywords": [
"SMTP",
"rest",
"ehlo",
"API"
],
"engines": {
"node": ">=0.12"
},
"author": "OpenDena",
"license": "MIT",
"bugs": {
"url": "https://github.com/ehlo-io/ehlo/issues"
},
"homepage": "https://github.com/ehlo-io/ehlo",
"dependencies": {
"commander": "~2.8",
"human-size": "~1.1",
"mailparser": "~0.5",
"request": "~2.60",
"smtp-server": "~1.4",
"stream-to-buffer": "~0.1",
"winston": "~1.0"
},
"devDependencies": {
"codacy-coverage": "~1.1",
"coveralls": "~2.11",
"istanbul": "~0.3",
"mocha": "~2.2",
"sinon": "~1.15",
"smtp-connection": "~1.3"
}
}