forked from likeastore/notifier
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.21 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
{
"name": "notifier",
"version": "0.1.0",
"description": "Service for sending notifications to users",
"main": "index.js",
"scripts": {
"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": {
"mocha": "~1.10.0",
"chai": "~1.6.1",
"sinon-chai": "~2.4.0"
},
"homepage": "https://github.com/likeastore/notifier",
"dependencies": {
"agenda": "~0.6.4",
"apn": "^1.6.0",
"async": "~0.7.0",
"colors": "~0.6.2",
"express": "~3.5.1",
"moment": "~2.6.0",
"mongojs": "~0.11.0",
"node-gcm": "^0.9.12",
"node-logentries": "~0.1.4",
"node-mandrill": "^1.0.1",
"postal": "~0.9.0-rc1",
"request": "~2.21.0",
"respawn": "~0.3.1",
"twilio": "^1.6.0",
"underscore": "~1.4.4"
},
"engines": {
"node": "0.10.x"
}
}