-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
54 lines (54 loc) · 1.35 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
{
"name": "pomo-mailer",
"version": "0.3.0",
"description": "Mail Renderer, Mail Queue, Task Manager",
"homepage": "https://github.com/hackplan/pomo-mailer",
"license": "MIT",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/hackplan/pomo-mailer.git"
},
"contributors": [
{
"name": "jysperm",
"email": "[email protected]",
"url": "https://jysperm.me"
},
{
"name": "faceair",
"email": "[email protected]",
"url": "http://lucy.faceair.me"
}
],
"scripts": {
"compile": "coffee --bare --compile --output lib/ src/",
"prepublish": "npm run compile",
"pretest": "npm run compile",
"test": "mocha --compilers coffee:coffee-script/register --require test/env -- test/*.test.coffee"
},
"dependencies": {
"async-q": "0.2.2",
"basic-auth": "1.0.3",
"bluebird-q": "^1.0.3",
"dottie": "1.1.1",
"jade": "1.11.0",
"lodash": "3.10.1",
"mabolo": "0.3.5",
"moment-timezone": "0.4.1",
"nodemailer": "2.5.0",
"q": "1.4.1",
"q-io": "1.13.1",
"request": "2.65.0",
"validator": "4.2.1"
},
"devDependencies": {
"body-parser": "1.14.1",
"chai": "3.4.1",
"coffee-script": "1.10.0",
"express": "4.13.3",
"mocha": "2.3.3",
"nodemailer-stub-transport": "1.0.0",
"supertest": "1.1.0"
}
}