-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.02 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.02 KB
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
{
"name": "reflectcal-mailer",
"repository": "https://github.com/alexeykomov/reflectcal-mailer",
"version": "0.0.1",
"description": "mail daemon for web-calendar",
"main": "js/main/app.js",
"directories": {
"doc": "doc"
},
"resolutions": {
"graceful-fs": "^4.2.11"
},
"private": false,
"scripts": {
"preinstall": "npx -y npm-force-resolutions",
"start": "gulp babel && node js/main/app.js",
"test": "gulp babel && jasmine"
},
"keywords": [
"daemon",
"mailer",
"server-application"
],
"author": [
"alexeykofficial@gmail.com (Alex K)"
],
"license": "MIT",
"devDependencies": {
"gulp": "^3.8.11",
"gulp-babel": "^5.1.0",
"gulp-sourcemaps": "^1.5.1",
"jasmine": "^2.2.1",
"source-map-support": "^0.2.10"
},
"dependencies": {
"bunyan": "^1.3.5",
"google-closure-library": "^20150315.0.0",
"jade": "^1.9.2",
"mongodb": "^1.4.37",
"mongoskin": "^1.4.13",
"nodemailer": "^1.3.4",
"object-merge": "^2.5.1",
"q": "^1.2.0"
}
}