-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
30 lines (30 loc) · 1.01 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
{
"name" : "notifyit",
"main" : "NotifyIt.js",
"description" : "Simple notification tool, designed to publish notifications.",
"author" : "Seth McLaughlin <smclaughlin AT linkedin DOT com>",
"version" : "0.0.1",
"keywords" : [ "notifyit", "NotifyIt", "notifications", "LinkedIn", "http", "pubsub", "socketio" ],
"engines" : {
"node" : ">=0.4.12"
},
"bin": {
"notifyit" : "./bin/notifyit"
},
"licenses" : [{
"type" : "Apache",
"url" : "https://github.com/sethmcl/notifyit/blob/master/LICENSE.txt"
}],
"repository" : {
"type" : "git",
"url" : "[email protected]:sethmcl/NotifyIt.git"
},
"dependencies" : {
"express" : ">=2.5.2",
"socket.io" : ">=0.8.7",
"socket.io-client" : ">=0.8.7",
"colors" : ">=0.6.0",
"underscore" : ">=1.3.3",
"nodeunit" : ">=0.0.1"
}
}