-
Notifications
You must be signed in to change notification settings - Fork 48
/
package.json
55 lines (55 loc) · 1.42 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": "notifier",
"version": "1.0.0",
"description": "Service for sending notifications to users",
"main": "index.js",
"scripts": {
"start": "node app.js",
"test": "node test/run.js",
"test-func": "node test/run.js test/func/notifier.func.js",
"watch": "nodemon --watch source --watch config app.js",
"test-watch": "nodemon --watch source --watch config --watch test test/run.js"
},
"repository": {
"type": "git",
"url": "git://github.com/likeastore/notifier.git"
},
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/likeastore/notifier/issues"
},
"devDependencies": {
"chai": "~4.1.2",
"mocha": "~4.0.1",
"sinon": "^4.0.1",
"sinon-chai": "~2.14.0"
},
"homepage": "https://github.com/likeastore/notifier",
"dependencies": {
"agenda": "~1.0.3",
"apn": "^2.1.5",
"async": "~2.5.0",
"body-parser": "^1.18.2",
"colors": "~1.1.2",
"cookie-parser": "^1.4.3",
"cors": "^2.8.4",
"express": "~4.16.2",
"method-override": "^2.3.10",
"moment": "~2.19.1",
"mongojs": "~2.4.1",
"node-gcm": "^0.14.9",
"node-logentries": "~0.1.4",
"node-mandrill": "^1.0.1",
"nodemailer": "^4.3.0",
"postal": "~2.0.5",
"request": "~2.83.0",
"respawn": "~2.5.0",
"twilio": "^3.9.0",
"underscore": "~1.8.3",
"winston": "^2.4.0"
},
"engines": {
"node": "0.10.x"
}
}