-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
43 lines (43 loc) · 993 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
43
{
"name": "ecsd",
"description": "Cloud enabled Email Content Scanner",
"version": "0.4.2",
"private": false,
"keywords": [
"email",
"antivirus",
"spam filter"
],
"homepage": "https://github.com/cloud-ecs/ecsd",
"bugs": {
"url": "https://github.com/cloud-ecs/ecsd/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/cloud-ecs/ecsd.git"
},
"dependencies": {
"async": "^1.5.0",
"body-parser": "^1.14.1",
"express": "^4.13.3",
"formidable": "^1.0.17",
"ini": "*",
"morgan": "^1.6.1",
"serve-favicon": "^2.3.0"
},
"optionalDependencies": {
"smtp-connection": "^1.3.1"
},
"devDependencies": {
"mocha": "*",
"nodemon": "*",
"open": "*",
"supertest": "*"
},
"license": "BSD-2-Clause",
"scripts": {
"start": "node server.js",
"lint": "node ./node_modules/.bin/eslint *.js lib/*.js test/*.js routes/*.js",
"test": "NODE_ENV=test ./node_modules/.bin/_mocha"
}
}